.points-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    justify-items: center;
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3); */
}

.points-attempts, .points-correct, .points-incorrect {
    font-weight: 500;
    font-size: 20px;
}

.points-correct,
.color-correct {
    color: rgba(72, 187, 120, 0.8);
}

.points-incorrect,
.color-incorrect {
    color: rgba(255, 87, 87, 0.8);
}