.question-wrapper {
    height: 70vh;
    position: relative;
 }

 .question-body {
    position: absolute;
    overflow-y: scroll;
    overflow-x: hidden;
    height: calc(100% - 100px);
 }

 .question-body::-webkit-scrollbar-track {
     visibility: hidden;
 }

 .question-body::-webkit-scrollbar {
     width: 5px;
 }

 .question-body::-webkit-scrollbar-thumb {
     border-radius: 5px;
     background-color: #888;
 }

.question-footer {
    position: absolute;
    bottom: 15px;
    height: 40px;
    margin-top: 10px;
}