@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400&display=swap");

CSSResult Skip Results Iframe EDIT ON html,
body {
  margin: 0 auto;
  margin-top: 20px;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    90deg,
    rgba(55, 21, 91, 1) 0%,
    rgba(60, 10, 36, 1) 33%,
    rgba(10, 57, 83, 1) 67%,
    rgba(56, 34, 16, 1) 100%
  ); */
  background: linear-gradient(
    45deg,
    #3f1968,
    #490c2c,
    #0a3953,
    #533319,
    #02500a
  );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  color: white;
  font-family: "Montserrat", sans-serif;
  line-height: 1.75rem;
  box-sizing: border-box;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1 {
  font-size: 3rem;
  line-height: 3rem;
}
a {
  color: white;
}

#title-container {
  margin: 0 auto;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.2);
  /* background: linear-gradient(
    48deg,
    rgba(60, 10, 36, 1) 0%,
    rgba(10, 57, 83, 1) 100%
  ); */
  padding: 1px;
  border-radius: 20px;
}
#title-container h1 {
  text-align: center;
  line-height: 3rem;
}

#info-btn-container {
  margin: 0 auto;
  max-width: 40%;
  justify-content: center;
  display: flex;
}
#info-btn-container button {
  border-width: 0;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin: 20px 50px;
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
}
#info-btn-container button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#info-btn-container button:active {
  background-color: rgba(255, 255, 255, 0.05);
}

#info-p-container {
  margin: 0 auto;
  margin-top: -20px;
  max-width: 80%;
}
#info-p-container p {
  display: block;
  line-height: 1.2rem;
}

#playspace-container {
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.2);
  max-width: 80%;
  border-radius: 20px;
}

#question-container {
  margin: 0 auto;
  text-align: center;
  max-width: 80%;
}
#option-container {
  margin: 0 auto;
  max-width: 100%;
  justify-content: center;
  display: flex;
}
#option-container button {
  border-width: 0;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  margin: 20px 30px;
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
}
#option-container button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#option-container button:active {
  background-color: rgba(255, 255, 255, 0.05);
}

#prev-list-container {
  margin: 0 auto;
  margin-top: -20px;
  max-width: 80%;
  text-align: center;
}
#prev-list-container p {
  display: block;
  line-height: 1.2rem;
}

@media only screen and (max-width: 600px) {
  #title-container {
    max-width: 80%;
  }
  #title-container h1 {
    font-size: 2.5rem;
  }
  #info-btn-container {
    display: flex;
  }
  #info-btn-container button {
    margin: 20px 10px;
  }

  #question-container {
    max-width: 94%;
  }
  #question-container h1 {
    font-size: 2rem;
  }

  #option-container {
    display: flex;
  }
  #option-container button {
    margin: 0 10px;
    margin-bottom: 20px;
  }
}
