* {
    margin: 0;
    padding: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
}

/*Header*/
.header {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(25, 26, 46, 1);
    font-size: 16px;
}

.header a {
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    margin: 13px;
}

/*Content*/

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 90vh;
    padding: 10px;
}

/*Auth*/

.auth {
    display: flex;
    flex-direction: column;
}

.auth input {
    padding: 5px;
    font-size: 1rem;
    margin: 10px;
}

/*Footer*/

.contact{
    height: 291px;
    color: white;
    background: rgba(25, 26, 46, 1);
    padding-top: 40px;
    padding-left: 113px;

}

.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 126px;
    width: 100%;
    color: white;
    background: rgba(25, 26, 46, 1);

}



.game-container {
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 800px;
}

#gameArea {
    width: 100%;
    max-width: 800px;
    height: 600px;
    display: none;
    position: relative;
    background: #fff;
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
    background: lightblue;
}