body {
    margin: 0;
    font-family: Arial;
    color: white;
    text-align: center;
    background-image: url("../assets/img/natureza.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#hud {
    height: 0   vh;
    background: transparent;
    color: white;
}

#menu {
    margin: 10% 20%;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#menu h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
}

#menu p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 30px
}

button {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background: #000000;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    color: #000000;
    background-color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 0px 15px #000000;
}

#game {
    display: none;

}

#gameArea {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: white;
}

.card {

    width: 120px;
    height: 120px;
    background: #fff;
    color: black;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 10px;
    border-radius: 10px;

}

.hangman {
    background-image: url(../assets/img/natureza.jpg);
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
}