body {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    background-image: url("../assets/img/natureza\ 6.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 


}


.row{
    justify-items: center;

}

header{
    justify-content: center;
    padding: 0px;
    backdrop-filter: blur(20px);
    flex-direction: row;

}

.fases{
    display: flex;
    justify-content: space-around;
}

.fases a{
    width: 100%;
    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, 160, 0);
}

#game {
    justify-items: center;
    margin-top: 60px;
    width: 650px;
    padding: 40px;
    border-radius: 15px;
    /*background: rgba(255, 255, 255, 0.25);*/
    background: #fff;
    backdrop-filter: blur(10px);
    text-align: center;

}

h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
}

#word {
    font-size: 35px;
    letter-spacing: 10px;
    margin: 20px;
}

input {
    padding: 15px;
    font-size: 20px;
    width: 200px;
    border-radius: 8px;
    border: none;

}

button {
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    background: #e5e5e5;
}

#tries {
    margin-top: 20px;
    font-size: 18px;
}

.next {
    padding: 10px;
    margin: 30px;
    padding: 30px;
    border: none;
    border-radius: 12px;
    background: #00c853;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.next:hover {
    background: #00e676;
    transform: scale(1.05);
}

button {
    background: #00c853;
    border: none;
    padding: 14px 30px;
    margin: 10px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;

}

button:hover {
    scale: 1.1;
    transition: 0.3s;
    background: #00e676;
    color: rgb(0, 0, 0);

}