html, body {
  width: 100%;
  height: 100%;
  background: none;
}

body {
  background-color: #000000;
  background-image: url('../images/frame_part_top.jpeg'), url('../images/frame_part_bottom.jpeg'), url('../images/frame_part_middle.jpeg');
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: calc(100% + 40px) auto;
  background-position: top, bottom, center;
  
  font-size: 1rem;
}

span, div, p {
  color: #dddddd;
}

input, select, textarea {
  color: #555555;
}

.hide {
  display: none;
}

#playerName {
  position: absolute;
  top: 50px;
  right: 70px;
  font-size: 24px;
  text-transform: capitalize;
}

#gameBoard {
  width: 100%;
  padding: 0 60px;
}

#questionContainer {
  width: 100%;
  /*background-color: #313f73;*/
  border-radius: 30px;
  padding: 40px 0 0 0;
  opacity: 0;
  transition: opacity 1s;
}

#questionContainer.in {
  opacity: 1;
}

.question-option {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  width: 100%;
  min-width: 300px;
  max-width: 350px;
  border: 0 none;
  border-radius: 10px;
  background-color: transparent;
  color: white;
  background-position: 0 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0 14px;
  height: 130px;
  display: block;
}

@keyframes rotateAnim {
  0% {transform: rotate(0deg);}
  25% {transform: rotate(4deg);}
  75% {transform: rotate(-4deg);}
}

.question-option[disabled] {
  opacity: .5;
}

.question-option.active {
  opacity: 1;
  animation-name: rotateAnim;
  animation-duration: 1.25s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.question-option:nth-child(1) {
  background-image: url('../images/answer-frame-blue.jpeg');
}

.question-option:nth-child(2) {
  background-image: url('../images/answer-frame-red.jpeg');
}

.question-option:nth-child(3) {
  background-image: url('../images/answer-frame-green.jpeg');
}

.question-option:nth-child(4) {
  background-image: url('../images/answer-frame-yellow.jpeg');
}