/* Add your CSS styles here */
#question-container {
    text-align: center;
}

#submit-btn {
    text-align: center;
    margin-left: 45%;
    border-radius: 5px;
    
}

 #result {
    text-align: center;
    margin-top: 1%;
     font-size: 20px;
    color:darkturquoise;
}

#submit-btn {
  background-color:deepskyblue;
  color: #fff;
  transition: background-color 1s;
}

#submit-btn:hover {
  background-color:forestgreen;
}

#submit-btn:focus,
#submit-btn:active {
  background-color:darkgray;
  transition: none;
}

#next-btn {
  background-color:dodgerblue;
  color: #fff;
  transition: background-color 1s;
}

#next-btn:hover {
  background-color:cadetblue;
}

#next-btn {
    text-align: center;
    border-radius: 5px;
    border-width: medium;
    
}

button {
    height: 25px;
    width: 55px;
}

li {
    margin-left: 42%;
    text-align:Left;
}
