/* varela-round-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Varela Round';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/varela-round-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
    font-family: 'Varela Round', sans-serif;
    background: linear-gradient(to top, #999900, #ffffff);
    height: 1080px;
    padding: 10px;    
}

#interface {
    position: fixed;
    left: 0px;
    top: 0px;
    padding: 15px;
    width: 250px;
    height: 1080px;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
}

#reload {
    width: 42px;
    height: 42px;
    text-align: center;
    line-height: 42px;
    background-color: #669966;
    color: white;
    border-radius: 5px;
    margin-top: 30px;
    cursor: pointer;
    border-bottom: 3px solid #336633;
    display: none;
}

#back {
  width: 42px;
  height: 42px;
  text-align: center;
  line-height: 42px;
  background-color: #669966;
  color: white;
  border-radius: 5px;
  margin-top: 30px;
  cursor: pointer;
  border-bottom: 3px solid #336633;
  display: block;    
}

#points {
    margin-top: 20px;
}

.button {
    border: none;
    outline: none;
    padding: 0px;
    margin: 0px;
    height: 42px;
    text-align: center;
    padding: 0px 15px;
    line-height: 42px;
    background-color: #669966;
    color: white;
    border-radius: 5px;
    border-bottom: 3px solid #336633;
    cursor: pointer;
}

#reload:hover, .button:hover {
    background-color: #4D804D;
}

#quiz-container {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
}

.quiz-container-inner {
  background-color: white;
  text-align: center;
  border-radius: 20px;
  padding: 30px;
  margin-top: 50px;
}

h1 {
  text-align: center;
}

#question-container {
  margin-bottom: 20px;
}

#question {
  margin-bottom: 30px;
}

#choices {
  list-style-type: none;
  padding: 0;
}

#choices li {
  margin-bottom: 15px;
  border: none;
  outline: none;
  padding: 0px;
  text-align: center;
  padding: 10px 15px;
  line-height: 24px;
  background-color: #9B9B9B;
  color: white;
  border-radius: 5px;
  border-bottom: 3px solid #6B6B6B;
  cursor: pointer;
}

#choices li:hover {
  background-color: #808080;
}

#choices li.correct {
  background-color: #669966;
  border-bottom: 3px solid #336633;
}
#choices li.incorrect {
  background-color: #be4d25;
  border-bottom: 3px solid #8E3A1C;
}

#result-container {
  text-align: center;
  display: none;
}

#result-text {
  margin-bottom: 10px;
}

#next-btn {
  padding: 10px 20px;
}