@media only screen and (max-width: 576px) {
    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 0.9em;
    }
}

@media only screen and (min-width: 768px) {
    p {
        font-size: 1.2em;
    }

}

.ansBtns {
    margin-bottom: 2px;
}

.questionClass {
    height: 70px;
}

.questionClass {
    font-size: 1.2em;
}

.responses {
    font-size: 3em;
}

.points_correct {
    width: 14px;
    height: 14px;
    background-color: darkseagreen;
    margin: 2px;
    float: left;
    border-radius: 7px;
}

.points_incorrect {
    width: 14px;
    height: 14px;
    background-color: rgb(214, 15, 15);
    margin: 2px;
    float: left;
    border-radius: 7px;
}

.points_set {
    height: 17px;
    margin-bottom: 10px;

}

.mainGroup {
    background-color: rgb(190, 214, 235);
}