body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgb(2, 2, 2);
    background: radial-gradient(ellipse at center, rgb(145, 18, 18) 0%, rgb(18, 25, 29) 100%);
    height: 750px;
}


header {
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 50px;
    align-items: center;
}

.inicio {
    display: flex;
    justify-content: space-between;
    width: 90%;
    color: aliceblue;
}

.numero-alvo {
    margin-bottom: 50px;
    margin-top: 50px;
}
.alvo {
    margin: 0 0 0 0;

}
.pontos {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.lista_a {
    display: flex;
    width: 210px;
    justify-content: space-evenly;
    padding-bottom: 1px;
    align-items: center;
    
}


.lista_b {
    display: flex;
    width: 260px;
    justify-content: space-between;
    padding-bottom: 1px;
}

.lista_c {
    display: flex;
    width: 330px;
    justify-content: space-between;
    padding-bottom: 1px;
    
}

.lista_d {
    display: flex;
    width: 260px;
    justify-content: space-between;
    padding-bottom: 1px;
}

.lista_e {
    display: flex;
    width: 210px;
    justify-content: space-evenly;
    padding-bottom: 1px;
    
}

.card {
    font-size: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: #eef10c9f;
    text-align: center;
    align-items: center;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    cursor: pointer;
    animation: aparecer 2s ease-in-out forwards, levitar 4s infinite ease-in-out;
        
}
.card:hover {
    background-color: #9ba351d7;
    
}

@keyframes aparecer {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

@keyframes levitar {
    0% {
        transform: rotate(0deg);
    }
    33% {
        transform: rotate(-5deg);
    }
    69% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}