@font-face {
  font-family: Outfit;
  font-weight: normal;
  src: url("fonts/Outfit-Regular.ttf");
}

.collapsible:after {
  content: "\002B"; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #505050;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
  color: #FFFFF8;
  font-weight: bold;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
  background-color: #FFFFF8;
  color: #505050;
  cursor: pointer;
  border-radius: 20px;
  padding: 26px;
  margin-bottom: 9px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 19px;
  font-weight: 600;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.collapsible:hover {
  background-color: #8C9EFF;
  color: #FFFFF8;
}

.collapsible:hover::after {
  color: #FFFFF8; 
}

/* Style the collapsible content. Note: hidden by default */
.content {
  padding: 0 18px;
  background-color: #f4f5f0;
  color: #505050;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

body {
  /* position: absolute; */
  display: table-cell;
  vertical-align: middle;
  background-color: #f4f5f0;
  width: 0 "auto";
  font-family: Outfit;
  margin-left: 3%;
  margin-right: 3%;
  padding: 9px;
}
