body {
  font-family: "Roboto Condensed", sans-serif;
}

h1 {
  text-align: center;
}

#title {
  text-decoration: underline;
}

#quiz {
  text-indent: 10px;
  display: none;
}

.button {
  border: 4px solid;
  border-radius: 5px;
  width: 40px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: right;
  background-color: #dcdcdc;
  color: black;
  margin: 0 2px 0 2px;
}
.button:hover {
  border: 4px solid grey;
  border-radius: 5px;
  width: 40px;
  padding-left: 5px;
  padding-right: 5px;
  position: relative;
  float: right;
  background-color: black;
  color: #dcdcdc;
  margin: 0 2px 0 2px;
}

.button.active {
  background-color: #f8f8ff;
  color: #525252;
}

button {
  position: relative;
  float: right;
}

.button a {
  text-decoration: none;
  color: black;
}

#container {
  width: 50%;
  margin: auto;
  padding: 0 25px 40px 10px;
  background-color: rgb(36, 201, 77);
  border: 4px solid #b0e0e6;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  box-shadow: 5px 5px 5px #888;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#prev {
  display: none;
}

#start {
  display: none;
  width: 90px;
}
html {
  font-family: "Roboto Condensed", sans-serif;
  backgound-repeat: repeat !important;
}

.overlay {
  position: fixed; /* Sit on top of the page content */
  display: block; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
  overflow: scroll;
  text-align: center;
}
#quizList {
  position: relative;
}
.centerButtons {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
