body {
  background-color: #1F1F2E;
  color: #FFFFFF;
  font-family: 'Michroma', sans-serif;
}
h1 {
  color: #41C8F4;
  text-align: center;
  text-shadow: 0 0 10px #41C8F4;
}
.question {
  margin-bottom: 5%;
  background: #22253B;
  padding: 3%;
  border-radius: 12px;
  box-shadow: 0 0 10px #41C8F4;
  max-width: 600px;
}
.answers label {
  display: block;
  cursor: pointer;
}
button {
  background-color: transparent;
  border: 2px solid #41C8F4;
  color: #41C8F4;
  padding: 2%;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  transition: 0.3s ease;
  display: block;
  margin: 1.5rem auto 0;
  text-shadow: 0 0 5px #41C8F4;
}
button:hover {
  background-color: #41C8F4;
  color: #1F1F2E;
  box-shadow: 0 0 20px #41C8F4;
  text-shadow: none;
}
#result {
  margin-top: 2%;
  font-size: 150%;
  text-align: center;
  color: #00FFAA;
  text-shadow: 0 0 10px #00FFAA;
}
  .side-image {
    position: fixed;
    width: 120px;     
    height: auto;     
    opacity: 0.15;     
    z-index: -1;       
  }
  .side-image.left {
    top: 200px;        
    left: 200px;      
    rotate: 20deg;  
  }
  .side-image.right {
    bottom: 150px;     
    right: 300px;   
    rotate: 25deg;    
  }
  .side-image.left-down {
    bottom: 600px;    
    right: 200px;   
    rotate: 40deg;    
  }
  .side-image.right-down {  
    bottom: 50px;    
    left: 250px;   
    rotate: -25deg;   
  }
  footer {
  background-color: #21253b !important;
  border-color: #41C8F4;
  color: #FFFFFF;
   border-top: 2px solid #41C8F4;
  font-size: 120%;
  padding: 1%;
  text-align: center;
}
#quizForm {
  max-width: 600px;
  margin: 0 auto;
}
@keyframes pulse-glow {
  0%, 100% {
    text-shadow: 0 0 10px #00FFAA;
    color: #00FFAA;
  }
  50% {
    text-shadow: 0 0 30px #00FFAA;
    color: #00FFAA;
  }
}
.correct-all {
  animation: pulse-glow 1s infinite;
}
.success-bg {
  background-color: #004d00 !important;
  transition: background-color 0.5s ease;
}
