body {
  background-color: white;
}

#start-menu {
  background-color: black;
  color: #0ae9d6;
  padding-bottom: 10px;
  padding-top: 10px;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 5px;
}

#quiz {
  background-color: white;
  color: black;
  border: thick black;
  padding-bottom: 10px;
  padding-top: 10px;
  font-size: 35px;
}

#start-quiz {
  color: black;
}

.flex-column {

  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;

}

h3 {
  text-align: center;
  letter-spacing: 7px;
  line-height: 40px;
}

.waves-effect {
  background-color: rgb(47, 233, 217);
  float: right;
}

#pic {
  height: 200px;
  width: 200px;

}

.timerDiv {

  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-items: center;

}

/* These are CSS values for shaking an image */
@keyframes shake {

  10%,
  90% {
    transform: translate3d(-1px, 0, 0);
  }

  20%,
  80% {
    transform: translate3d(2px, 0, 0);
  }

  30%,
  50%,
  70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%,
  60% {
    transform: translate3d(4px, 0, 0);
  }
}

.apply-shake {
  animation: shake 0.82s cubic-bezier(.36, .07, .19, .97) both;
  animation-iteration-count: infinite;
}

#answer {
  text-align: center;
  width: 50%;
}

.waves-effect {
  background-color: rgb(47, 233, 217);
  float: right;
}

.redSpace {
  background-color: #d32f2f;
}