
*{
 font-family: 'Clash Display', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  color: white;
}
body{
  background-color:#FFF;
  
}

.font-wix{
   font-family: "Wix Madefor Display", sans-serif;
}
.font-clash{
   font-family: 'Clash Display', sans-serif;
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.answer.open {
  max-height: 200px; 
  opacity: 1;
}



