* {
    box-sizing: border-box;
    font-family: Arial;
    image-rendering: pixelated;
}

body {
    margin: 0;
    padding: none;
    background: radial-gradient(circle at center, #101013 0%, black 100%);
}

.gameWindow {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    width: 100%;
    height: 100vh;
    gap: 25px;
}

.game {
    border: 1px solid #252525;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
}

.menu {
    margin-top: 700px;
    width: 480px;
}

.menu button {
    border-radius: 30px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 4px 12px;
    transition: 0.5s;
    cursor: pointer;
    font-size: 12px;
}

.menu button:hover {
    background-color: white;
    color: black;
}

/* Links */
a {
    text-decoration: none;
}
a:link {
    color: rgb( 233, 73, 154 );
}
a:visited {
    color: rgb( 110, 30, 71 );
}
a:hover {
    color: rgb( 252, 207, 230 );
}

/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
#canvas {
    padding-right: 0;
    display: block;
    border: 0px none;
    visibility: hidden;
}

#loadingCanvas {
    border: 1px solid #252525;
    border-radius: 10px;
    position: absolute;
    z-index: 1;
}
