/* @import url("https://fonts.googleapis.com/css2?family=Varela+Round&display=swap"); */
::selection {
  background: tomato;
  border-radius: 20px;
}

body {
  display: inline-flexbox;
  box-sizing: border-box;
/*   box-shadow:inset 0 0 10px 2px rgb(0, 0, 0), inset 0 0 140px 15px rgb(21, 67, 204); */
  height: 100vh;
/*   background: rgb(189, 226, 140); */
  font-family: "Quicksand", sans-serif;
  margin-top: -2em;
  padding: 0;
  text-align: center;

}

/* .container {
  margin-top: 50vh;
  text-align: center;
} */
#modalBtn {
  padding: 20px;
  margin: 1em;
  background: rgb(218, 193, 9);
  /* text-shadow: 1px 1px 5px rgb(12, 9, 9); */
  box-shadow: 0 0 30px rgb(3, 3, 3), inset 0 0 4px 1px black;
  color: rgb(229, 232, 79);
  border: 2px solid white;
  border-radius: 30px;
  font-size: 1.4em;
  cursor: pointer;
  transition: all 0.3s;
}


.answerChoice {
  border: 1px solid black;
  color: white;
    text-shadow: 1px 1px 5px black;

  width: 100%;
  margin-bottom: 2em;
  box-shadow: 0 0 30px rgb(3, 3, 3), inset 0 0 4px 1px black;
  border-radius: 10px;
  background: yellow;
}

.modal {
  width: 100%;
  height: 100%;
  color: red;
  left: 0;
  top: 0;
  font-size: 1.2em;
  position: absolute;
  overflow: hidden;
  /* padding-top: 20%; */
  transition: all 0.3s;
  opacity: 1;
  transform: scale(0);
}

.content {
  /* border-radius: 30px; */
  padding: 20px;
  /* margin-top: 25%; */
  background-color: rgba(0, 0, 0, 0.1);
  /* width: 90%; */
  height: 100vh;
  /* margin: auto; */
  backdrop-filter: blur(10px);
}
.content span {
  background-color: ghostwhite;
  width: 2em;
  height: 0.2em;
  margin: 0.26em 0;
  display: block;
  cursor: pointer;
}
.content span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.content span:nth-child(2) {
  transform: rotate(45deg);
}
.content h1 {
  color: white;
}
.content p {
  color: white;
}

.active {
  display: block;
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 500px) {
  #modalBtn {
    padding: 2px 6px;
    border: 1px solid white;
    font-size: 3em;
  }
  body {
    font-size: .5em;
  }
  h3 {
    font-size: 4em;
  }
  .answerChoice {
    margin-left: 0;
    font-size: .75em;
    margin: 0.1em;
}
.modal {
  background: rgba(255, 255, 255,0.3);
  margin: 10% 10%;
  width: 80%;
  max-height: 60%;
  padding-bottom: 1em;
  border: 1px solid whitesmoke;
  border-radius: 20px;
  box-shadow: 1px 1px 10px 2px black;
  color: red;
  text-shadow: 1px 1px 15px white;
  }
}
@media (max-height: 500px) {
  body {
    display: inline-block;
  }
  #modalBtn {
    padding: 2px 6px;
    border: 1px solid white;
    font-size: 3em;
  }
  body {
    font-size: .5em;
  }
  h3 .triviaAnswer {
    font-size: .4em;
    color: blue;
  }
  .answerChoice {
    background: whitesmoke;
    margin-left: 0;
    font-size: .75em;
    margin: 0.1em;
    width: 100%;
}
.modal {
  background: rgba(255, 255, 255,0.3);
  margin: 10% 10%;
  width: 80%;
  max-height: 60%;
  padding-bottom: 1em;
  border: 1px solid whitesmoke;
  border-radius: 20px;
  box-shadow: 1px 1px 10px 2px black;
  }
}
