body{
    margin: 0;
    position: relative;
    padding-bottom: 80px;
    font-family: 'Patrick Hand', cursive;
    font-size: 1.2em;
    letter-spacing: 1px;
}

.header{
    background: black;
    padding: 3px;
    text-align: center;   
}

.title,
.subTitle{
    color: #fff;
}

.title{
    background-color: #44658F;
    border-radius: 10px;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 15px;
    margin-bottom: 0;
}

.subTitle{
    margin-top: 15px;
    margin-bottom: 10px;
}

.version{
    margin-left: 20px;
    font-size: 1.2em;
    background-color: #44658F;
    display: inline-block;
    padding: 5px;
    border-radius: 10px;
    color: #fff;
}

.form{
    width: 40%;
    border: 4px solid #6D68B2;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.question{
    margin-left: 10px;
}

.label-container{
    display: flex;
    align-items: center;
    flex-direction: column;
}


.label-radio{
    display: block;
    width: 93%;
    padding: 5px;
    margin-bottom: 8px;
    border: solid 1px rgba(0, 0, 0, 0.192);
    border-radius: 7px;
    cursor: pointer;
}

.label-radio:hover{
    background: #CAB7FF;
}

.answer-container{
    margin-top: 50px;
    text-align: center;
}

.correct-button{
    background-color: #6d68b29c;
    width: 30%;
    border: none;
    padding: 5px;
    border-radius: 18px;
    cursor: pointer;
    font-family: 'Patrick Hand', cursive; 
    font-size: 1.1em;
    overflow: hidden;
}

.correct-button:hover{
    background-color: #6d68b2e1;
}

.footer{
    position: absolute;
    height: 60px;
    width: 100%;
    background-color: rgb(14, 12, 32);
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0px;
    font-family: serif;
    font-size: 0.8em;
}

@media (max-width: 700px) {
    .form{
        width: 80%;
    }
}

@media (max-width: 700px) {
    .correct-button{
        width: 60%;
    }
}

.footer-text{
    color: #fff;
}

.answer-number{
    color: red;
}
