
  .collapsible {
  width: max-content;
  background-color: #FFDDB9;
  color: #381D2A;
  cursor: pointer;
  border: none;
  padding: 1vh;
  /*display: flex;*/
  font-size: 26px;
  text-align: center;
  font-family: "IM Fell English";
  }
  
  .content ul {
    list-style-type: disc;
    margin-left: 20px;
    font-size: 2.5vh;
  }
  
  .content{
   padding: 0 5px;
   /*display: none;*/
   background-color: #581F18;
   color: white;
   text-align: center;
   border-radius: 5px;
   font-size: 2.5vh;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  }
  
  
.center {
  margin: 0;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}