.question {
    text-align: center;
}
.spinning {
    animation: rotate 2.5s linear infinite;
    width: 50%;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
#answerChoices {
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
}

#answerChoices > *{
    margin-top: 5px;
}

@media all and (max-width: 767px) {
    #answerChoices {
        margin-left: 0%;
        margin-right: 0%;
    }
}

#teamName {
    text-align: center;
}
 