* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.question-form {
    top: 35%;
    width: 50%;
    position: absolute;
}

#question {
    background: #96a9df;
    width: 100%;
    border: 3px solid #d1c9c9;
    border-radius: 30px 30px 0px 0px;
    padding: .5em 1em;
    color: white;
    font-size: 24px;
}

.options {
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    padding: 1em 1em;
    color: #96a9df;
    border: 3px solid #d1c9c9;
    border-top: none;
    border-bottom: none;
}

input {
    margin: 1em 1em;
}

.btn-grp {
    width: 100%;
    border: 3px solid #d1c9c9;
    border-top: none;
    border-radius: 0px 0px 30px 30px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: row;
}

#sub-btn,
#nxt-btn {
    width: 50%;
    border: 3px solid #d1c9c9;
    border-bottom: none;
    padding: 1.2em;
    color: white;
    font-size: 1.2em;
    transition: .3s ease-in-out;
}

#sub-btn {
    border-radius: 0px 0px 0px 30px;
    background: white;
    color: #96a9df;
    border-left: none;
    border-right: none;
}

#nxt-btn {
    border-radius: 0px 0px 30px 0px;
    background: #96a9df;
    color: white;
    border-right: none;
}

#sub-btn:hover {
    background: #96a9df;
    color: white;
}

#nxt-btn:disabled {
    background: #6d6d6d;
    color: #ffffff;
}