body {
    color: darkslategrey;
}

.choice-container {
    display: flex;
    margin-bottom: 0.8rem;
    width: 100%;
    border-radius: 5px;
    background-color: #f78888;
    font-size: 3rem;
    min-width: 80rem;
}

.choice-container:hover {
    cursor: pointer;
    box-shadow: 0 0.4rem;
    transition: transform 100ms;
    transform: scale(1.03);
}

.choice-prefix {
    padding: 2rem 2.5rem;
    color:darkslategrey;
}

.choice-text {
    padding:2rem;
    width:100%;
}

.correct {
    background: linear-gradient(32deg,rgb(99, 231, 90)0%, rgb(41,232,111)100%)
}

.incorrect {
    background: linear-gradient(32deg,rgb(241, 75, 75)0%, rgb(224,11,11,1)100%)
}

#timer {
    font-size: 32px;
    margin-top:220px;
    text-align: right;
}

#hud {
    display: flex;
    justify-content: space-between;
}

.hud-prefix {
    text-align: center;
    font-size: 2rem;
}

.hud-main-text {
    text-align: center;
}

@media screen and (max-width:768px) {
    .choice-container {
        min-width: 20rem;
    }
    
}