body {
    justify-items: center;
    margin: 0;
    font-family: Arial;
    color: white;
    text-align: center;
    background-image: url("../assets/img/natureza\ 7.png");
    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, 160, 0);
}

.startHopscotch {
    margin-top: 3%;
    background-size: cover;
    height: 70vh;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#gameArea {
    padding: 10px;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin: 50px;
    max-width: auto;
    margin: auto;
    text-align: center;
    color: rgb(0, 0, 0);
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.card {

    width: 70px;
    height: 70px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;

}

.current{
background:#FFC107;
animation:pular 0.5s infinite alternate;
}

@keyframes pular{
from{transform:translateY(0)}
to{transform:translateY(-10px)}
}

.card:hover {

    background: #66bb6a;
    color: white;
    transform: scale(1.1);

}

.active {

    background: #ffeb3b;

}

.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);
}