* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
html {
  font-size: 16px;
}
.modal {
  border-radius: 30px;
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 90%;
  height: 90%;
  transform: translate(5%, 5%);
  overflow: auto;
  background-image: url("./erik-mclean-C3T8KTZxTFM-unsplash.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* Black w/opacity/see-through */
  /* background-color: rgb(0, 0, 0); */
  color: white;
}

.modal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.desc {
  margin: 50px;
  text-align: center;
  max-width: 600px;
}
.inner {
  background-color: rgba(0, 0, 0, 0.575);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
#quizContainer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  background: rgb(2, 0, 36);
  background: -moz-linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(99, 7, 7, 1) 35%,
    rgba(4, 57, 68, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(99, 7, 7, 1) 35%,
    rgba(4, 57, 68, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(99, 7, 7, 1) 35%,
    rgba(4, 57, 68, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#020024",endColorstr="#043944",GradientType=1);

  color: white;
}

.btn {
  /* display: none; */
  min-width: 250px;
  background: #d934d6;
  background-image: -webkit-linear-gradient(top, #d934d6, #452bb8);
  background-image: -moz-linear-gradient(top, #d934d6, #452bb8);
  background-image: -ms-linear-gradient(top, #d934d6, #452bb8);
  background-image: -o-linear-gradient(top, #d934d6, #452bb8);
  background-image: linear-gradient(to bottom, #d934d6, #452bb8);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

.answers {
  min-width: 800px;
  display: flex;
  flex-direction: column;
  flex: wrap;
  justify-content: center;
}
.ans-row {
  margin: 20px 20px;
  min-width: 500px;
  display: flex;
  justify-content: space-around;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 20rem;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(125, 0, 142, 1) 94%
  );
  border-radius: 35px;
  -webkit-box-shadow: 2px 6px 53px -10px rgba(0, 0, 0, 1);
  -moz-box-shadow: 2px 6px 53px -10px rgba(0, 0, 0, 1);
  box-shadow: 2px 6px 53px -10px rgba(0, 0, 0, 1);
}
.btn-ans {
  display: none;
}
