/* Fundo da página */
body {
    background-size: cover;
    margin: 0;
    padding: 0;
    height: 150vh;
    /* display: flex; */
    justify-content: space-evenly;
    align-items: center;
    background-image: url(../assets/img/natureza\ 2.jpg);
    font-family: Arial, Helvetica, sans-serif;
    background-image: no-repeat;
}

.resto{
    justify-content: center;
    margin-top: 60px;
    display: flex;

}

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, 160, 0);
}

#game {
    width: 500px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    text-align: center;
}

#hud {
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.memory {
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.memory h2 {
    grid-column: span 4;
    color: white;
    margin-bottom: 10px;
}

.card {
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    cursor: pointer;
    transition: 0.3s;
}



.card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}

.next {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 20px;
    padding: 24px 50px;
    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);
}

img{
    border-radius: 10px;
    width: 100%;
}

.dificuldade{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    padding: 10px;
    border: 0px;
    border-radius: 5px;
    background-color: #00c853;
}

.dificuldade:hover{
    transition: 0.3s;
    background: #00e676;
    transform: scale(1.05);
}

