* {
    cursor: url(../Assets/Cursors/cursor.cur), auto;
}

body {
    cursor: url(../Assets/Cursors/cursor.cur), auto;
    text-align: center;
    background-color: #181818;
    overflow: hidden;
}

img {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 70%;
}

.canvas-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

canvas {
    transform: translateZ(0);
}
  
#gamefield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.a:hover {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
}

.centered-image:hover {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
}

.centered-image {
    pointer-events:visibleStroke;
    position:relative;
}

.follow-cursor {
    pointer-events: none;
    z-index: 999;
    transition: 0.1ms;
    opacity: 0.4;
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #FF756B;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transition: 0.1ms;
    -moz-transition: 0.1ms;
    -ms-transition: 0.1ms;
    -o-transition: 0.1ms;
}

#meText {
    font-size: 27px;
    color: white;
}

.header {
    color:white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    background-color: #232323;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

a {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    text-decoration: none;
}
  
.logo {
    font-size: 24px;
    font-weight: bold;
}
  
.buttons button {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    background-color: #7f7f7f;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.buttons button:hover {
    cursor: url(../Assets/Cursors/pointer-cursor.cur), auto;
    background-color: #a53333;
} 