body {
    margin: 0;
    font-family: Arial;
    color: white;
    text-align: center;
    background-image: url("../assets/img/natureza\ 3.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

header{
    justify-content: center;
    padding: 0px;
    backdrop-filter: blur(20px);
    flex-direction: row;
}

.fases{
    display: flex;
    justify-content: space-around;
}

.fases a{
    width: 120px;
    padding: 40px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: black;
}

.fases a:hover{
    transition: 0.5s;
    background-color: rgb(0, 153, 0);
}



.hangman {
    margin-top: 3%;
    background-size: cover;
    height: 70vh;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#letter {
    justify-items: center;
    font-size: 50px;
    width: 200px;
    height: 100px;
    background-color: rgb(255, 255, 255);
    border-radius: 4px;
    border: 0px;
}

#btnGuess {
    font-size: 15px;
    width: 50px;
    height: 50px;
    border: 0px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
}

#btnGuess:hover {
    color: aliceblue;
    background-color: rgb(0, 86, 156);
    transition: 1s;
    box-shadow: 5px 5px 5px;
}

.jogo {
    padding: 3%;
    justify-content: center;
    align-content: center;
    backdrop-filter: blur(10px);
    border-radius: 10px;
}

.jogo h2 {
    color: black;
    font-size: 35px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

p {
    size: 200px;
}

.next {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 20px;
    padding: 20px;
    font-size: 15px;
    border: 0px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
}

.next:hover {
    color: aliceblue;
    background-color: rgb(0, 168, 14);
    transition: 1s;
    box-shadow: 5px 5px 5px;
}

#btnHint {
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 0 10px rgb(0,255,0);
    animation: verdeAnimado 3s infinite;

}

@keyframes verdeAnimado {

    0% {
        background-color: rgb(0, 120, 0);
    }

    25% {
        background-color: rgb(0, 160, 0);
    }

    50% {
        background-color: rgb(0, 200, 0);
    }

    75% {
        background-color: rgb(34, 180, 34);
    }

    100% {
        background-color: rgb(0, 120, 0);
    }

}