#question {
    width: calc(100% - 80px);
    height: 20%;
    max-height: var(--questHeight);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
}

#ansGrid {
    width: calc(100% - 60px);
    height: calc(80% - 150px);
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 20px;
    border-radius: 20px;
    display: grid;
    row-gap: 20px;
    grid-auto-rows: calc(20% - 17.5px);
}

.ans {
    border-radius: 20px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: solid;
    border-width: 0;
    filter: drop-shadow(0 0 7px rgba(0, 0, 0, 0.05));
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    cursor: pointer;
    font-size: 15px;
    font-weight: 300;
}

/*
.ans:hover {
    transform: scale(1.05);
}
*/

#indicator {
    background-color: rgba(20, 20, 20, 0.2);
    height: 5px;
    margin-top: 40px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

#indicatorBall {
    height: 5px;
    width: 10%;
    border-radius: 10px;
    background-color: black;
}
