@font-face {
    font-family: "satoshi";
    src: url(./Satoshi-Variable.ttf) format("truetype");
  }
  * {
    font-family: "satoshi", sans-serif;
    padding: 0;
    margin: 0;
    color: white !important;
  }

  .faq{
    cursor: pointer;
}
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}
.faq.active .answer{
    max-height: 300px;
}

.wrapper{
    box-sizing: content-box;
    display: flex;
}
.words{
    overflow: hidden;
}
.words span{
    display: block;
    height: 100%;
    color: #FECC2C;
    animation: spin_words 20s infinite;
}
