* {
    margin: 0;
    font-family: "Press start 2P", cursive;
    color: #fff;
}

/* :root {
    --text-color: #fff;
    --button-hover: #e9e9e9;
    --background-color: #000;
    --text-hover: #cdcdcd;
} */

::selection {
    color: #000;
    background-color: #fff;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #000000;
    /* background-image: linear-gradient(-30deg, #3b3b3b, #414141) */
    /* background-image: url("Assets/Images/index-background.png"); */
}

#wrapper {
    width: 80%;
    left: 10%;
    height: 100%;
    position: relative;
}

header {
    height: 100px;
    width: 100%;
    position: relative;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 70px;
    position: relative;
    height: 70px;
}

header a {
    color: #fff;
    text-decoration: none;
}

header h1 {
    font-size: 16px;
    color: #fff;
}

header a h2 {
    font-size: 20px;
}

nav {
    height: 100%;
}

nav ul {
    display: flex;
    flex-direction: row;
    list-style: none;
    height: 100%;
    align-items: center;
}

nav ul a {
    margin-left: 50px;
    text-decoration: none;
    font-size: 12px;
    color: #fff;
    width: 150px;
    height: 60%;
    align-items: center;
    display: flex;
    justify-content: right;
}

nav ul a:hover > * {
    color: #cdcdcd;
    transition: 0.1s;
}

main {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

main #info h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #fff;
}

main #info p {
    font-size: 28px;
    color: #fff;
}

main img {
    width: 300px;
    margin-left: 100px;
    object-fit: contain;
}

footer {
    position: absolute;
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
}

footer a {
    width: 300px;
    max-width: 30%;
    height: 100px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

footer a:hover {
    background-color: #e9e9e9;
}

footer a .button {
    color: #000;
    font-size: 36px;
}

.rules {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.rules div > * {
    margin-bottom: 20px;
}

.rules div h2 {
    font-size: 32px;
}

.rules div p {
    font-size: 20px;
}

.rules div img {
    width: 100%;
    margin: 0;
}

.error {
    display: none;
}

@media screen and (max-width: 960px), screen and (max-height: 680px) {
    /* cant play screen */
    main, header, footer {
        display: none;
    }
    .error {
        display: flex;
    }
}