@import url('https://fonts.googleapis.com/css2?family=Muli=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Muli', sans-serif;
  background-color: #f0f0f0;
}
h1 {
  margin: 50px 0px 30px;
  text-align: center;
}
.faq-container {
  margin: 0 auto;
  max-width: 600px;
}

.faq {
  background-color: transparent;
  position: relative;
  padding: 20px;
  border: 1px solid gray;
  border-radius: 20px;
  margin: 30px 0;
  overflow: hidden;
  transition: 0.3s ease;
}

.faq.active {
  background-color: white;
  box-shadow: 1px 1px 4px gray;
}

.faq.active::before {
  content: '\f086';
  font-family: 'font awesome 5 free';
  position: absolute;
  font-size: 7rem;
  color: blue;
  opacity: 0.2;
}

.faq-text {
  display: none;
}
.faq.active .faq-text {
  display: block;
}

.faq-toggle {
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
}
.faq .fa-times {
  display: none;
}
.faq.active .fa-times {
  display: block;
}
.faq.active .fa-chevron-down {
  display: none;
}
