body {
    text-align: center;
    background: #f4c991;
}

h1{
    font-size: 36px;;
}

#mainBox {
    min-height: 500px;
    min-width: 700px;
    width: 32vw;
    background: #d4e1ee;
    position: relative;
    border: 5px solid;
    margin: auto;
    padding: 10px;
}

table {    
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: 28px;
    border: 3px solid;
    width: 80%;
    height: 200px;
}

.button {
    display: inline-block;
    padding: 5px;
    margin-bottom: 10px ;
    margin-right: 3px ;
    margin-top: 10px ;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.button1{
    background-color: rgb(12, 12, 60);
    color: white;
    font-size: 24px;
    width: 200px;
}

.button2{
    background-color: rgb(25, 25, 130);
    color: white;
    font-size: 24px;
    width: 200px;
}

.button3{
    background-color: rgb(25, 25, 130);
    color: white;
    font-size: 20px;
    width: 140px;
}

.button:active{
    border: 5px solid rgb(172, 172, 205);
}

.button:disabled {
    background-color: lightgray;
    color:black;
}

label{
    font-size: 28px;
}

#answerBox{
    font-size: 24px;
    margin-top: 10px;
    padding: 5px;
    width: 100px;
    height: 22px; 
    text-align: center;
}
.input {
    font-size: 24px;
    margin-top: 30px;
    padding: 5px;
    width: 60px;
    height: 30px;
}

input[type=checkbox] {
    height:30px;
    width:30px;
}

#selectDivision{
    margin-top: 30px;
}

.dropdownBoxes{
    color: black;
    padding: 2px;
    text-align: left;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 10px ;
    cursor: pointer;
    background-color: whitesmoke; 
  }

  #correctAnswers {
    color: green;
    font-size: 24px;
    /* border: 3px solid green; */
  }

  #incorrectAnswers {
    color: red;
    font-size: 24px;
    /* border: 3px solid red; */
  }

  .incorrects td {
    color:red;
  }
  .corrects td {
    color:darkgreen;
  }

  .incorrectResult {
    color:red;
  }
  
  .outputFormat tr, th{    
    padding: 5px;
  }

  #questionBox{
    padding: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    
    color: black;
    font-size: 32px;
    margin: 10px ;
    width: 160px;
    background-color: Orange; 
  }