* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #201c38;
  color: #c7ecee;
}
.title {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 20px;
  color: #fad390;
  text-align: center;
}
main {
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
}
.box {
  width: 45vw;
  margin-bottom: 20px;
  border: 2px solid #c7ecee;
  padding: 10px;
  background-color: #0c2461;
}
.box:hover {
  background-color: #020a27;
}
.question {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.question span {
  cursor: pointer;
}
.answer {
  color: #fad390;
  font-size: 1.2rem;
}
.hidden {
  display: none;
}
.show {
  display: block;
}
.material-symbols-outlined {
  transition: 0.2s;
}
.material-symbols-outlined:hover {
  transform: scale(1.4);
}
@media screen and (max-width: 600px) {
  .title {
    position: relative;
    top: 10px;
  }
  main {
    position: absolute;
    left: 50%;
    top: 120px;
    transform: translateX(-50%);
    width: 80%;
  }
  .box {
    width: 100%;
  }
  .question {
    font-family: 1.3rem;
  }
  .answer {
    font-family: 1.1rem;
  }
}
