body{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
div{
    background-color: white;
    margin: 5px;
    width: 90%;
    height: 300px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
    text-align: center;
}
#questionZone{
    width: 90%;
    background-color: lightgray;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: space-around;
    margin-left: auto;
    margin-right: auto;
    flex-flow: column;
}
input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=number], select {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
input[type=button]{
    width: 80%;
    height: 50px;
    border-radius: 25px;
    border-color: #aaa;
    background-color: #ccc;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    color: black;
    font-weight: 900;
    font-size: 20px;
}
select{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#answercheck{
    width: 80%;
    height: 50px;
    border-radius: 25px;
    border-color: darkgreen;
    background-color: green;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: center;
    color: aliceblue;
    font-weight: 900;
    font-size: 20px;
}
.correct{
    border-width: 0;
    border: solid;
    background-color: #90ee90;
}
.wrong{
    border-width: 0;
    border: solid;
    background-color: #ee9090;
}
#results{
    height: 500px;
}
section{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    width: 100px;
    height: 50px;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    font-weight: 900;
    font-size: 40px;
    color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
label{
    font-size: 40px;
}