* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  gap: 20px;
  background-color: #f5f7fb;
  text-align: center;
  justify-content: center;
  font-family: sans-serif;
}
.container {
  z-index: 4;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  gap: 20px;
  background-color: #f5f7fb;
  text-align: center;
  justify-content: center;
}
.start h1 {
  color: #293264;
  font-size: 31px;
  margin-bottom: 10px;
  font-weight: 700;
}
.start p {
  color: #293264;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 30px;
}
button {
  padding: 15px 30px;
  background-color: #293264;
  color: #f5f7fb;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  border: none;
  width: 200px;
  height: 50px;
  font-weight: 500;
}
.above {
  position: absolute;
  width: 100px;
  z-index: -2;
  top: 0;
  background: #fffad1;
  transform-origin: 50% 50%;
  animation: move 10s ease-in-out infinite;
}
@keyframes move {
  0% {
    transform: scale(1) translate(-60px, -50px);
  }
  30% {
    transform: scale(0.8) translate(30vw, 30vh) rotate(160deg);
  }
  40% {
    transform: scale(0.8) translate(30vw, 30vh) rotate(160deg);
  }
  70% {
    transform: scale(1.5) translate(-20vw, 50vh) rotate(-20deg);
  }
  80% {
    transform: scale(1.5) translate(-20vw, 50vh) rotate(-20deg);
  }
  to {
    transform: scale(1) translate(-60px, -50px);
  }
}
.quiz {
  padding: 40px 75px;
  display: flex;
  height: 100vh;
  flex-direction: column;
  z-index: 10;
  align-items: center;
  justify-content: space-between;
}
.question {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  width: 550px;
}
.question h1 {
  font-size: 16px;
  font-weight: 700;
  text-align: start;
  color: #293264;
  max-width: 100%;
}
.labels {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 13px;
  justify-content: space-between;
}
.labels p {
  font-weight: 500;
  cursor: pointer;
  font-size: 15px;
  width: max-content;
  color: #293264;
  border-radius: 7px;
  border: 1px solid #4d5b9e;
  padding: 6px 10px;
  text-align: center;
}
.labels p:focus {
  outline: none;
}
.score {
  font-family: Inter;
  font-weight: 700;
  font-size: 1rem;
}
.labels p:active {
  box-shadow: inset 5px 5px 10px -3px #4d5b9e;
}
.labels p.answer-selected {
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 15px;
  width: max-content;
  cursor: pointer;
  background-color: #4d5b9e;
  border-radius: 7px;
  border: 1px solid #4d5b9e;
  padding: 6px 10px;
  text-align: center;
}
#correct {
  background-color: #94d7a2;
  border: 1px solid #94d7a2;
}
#incorrect.answer-selected {
  background-color: #f8bcbc;
  border: 1px solid #f8bcbc;
}
#not-selected.answer {
  color: #29326466;
  border: 1px solid rgba(41, 50, 100, 0.4);
}
@media (min-width: 200px) and (max-width: 767px) {
  body {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    height: auto;
    background-color: #f5f7fb;
    text-align: center;
    font-family: sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .quiz {
    display: flex;
    padding: 30px 60px;
    gap: 30px;
    margin: auto;
    height: auto;
    flex-direction: column;
  }
  .question {
    width: 100%;
  }
}
@media (min-width: 768px) {
  body {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    height: auto;
    background-color: #f5f7fb;
    text-align: center;
    font-family: sans-serif;
    overflow-x: hidden;
    overflow-y: scroll;
  }
  .quiz {
    display: flex;
    padding: 30px 100px;
    gap: 30px;
    margin: auto;
    height: auto;
    width: 80vw;
    flex-direction: column;
  }
  .question {
    width: 100%;
  }
}
