/* Reset some default styles */
body, h1, p {
    margin: 0;
    padding: 0;
  }

  
  @font-face {
    font-family: 'panoptica';
    src: url(Panoptica\ W00\ Sans\ Regular.ttf);
    font-style: normal;
    font-weight: normal;
}


@font-face {
  font-family: 'Cookie Monster';
  src: url(./fontfolder/CookimonstapersonaluseExtbd-mL0Vm.otf);
}

@font-face {
  font-family: 'Dots All For Now';
  src: url(./fontfolder/DotsAllForNow.ttf);
}


@font-face {
    font-family: 'littera';
    src: url(LitteraTextRegular.ttf);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'muller';
    src: url(Muller\ Regular.ttf);
    font-style: normal;
    font-weight: normal;
}


@font-face {
    font-family: 'ordre-de-depart';
    src: url(Ordre\ de\ Depart.ttf);
    font-style: normal;
    font-weight: normal;
}


@font-face {
    font-family: 'starlight';
    src: url(Starlight.ttf);
    font-style: normal;
    font-weight: normal;
}


@font-face {
    font-family: 'dotsall';
    src: url(DotsAllForNow.ttf);
    font-style: normal;
    font-weight: normal;
}





@font-face {
  font-family: 'chivo';
  src: url(./fontfolder/Chivo-Italic-VariableFont_wght.ttf);
  font-style: normal;
  font-weight: normal;
}



@font-face {
  font-family: 'exodus_shino';
  src: url(./fontfolder/ExodusDemo-Shino.otf);
  font-style: normal;
  font-weight: normal;
}




@font-face {
  font-family: 'exodus_striped';
  src: url(./fontfolder/ExodusDemo-Striped.otf);
  font-style: normal;
  font-weight: normal;
}

@font-face {
  font-family: 'plank';
  src: url(./fontfolder/PLANK___.TTF);
  font-style: normal;
  font-weight: normal;
}



  body {
    font-family: 'littera';
    background-color: rgb(153, 153, 153);
  }
  

  





  /* Header styles */
  /* header {
    background-color: rgb(0, 0, 0);
    color: #ff0000;
    text-align: center;
    font-size: 4rem;
    padding: 1rem;
    font-family: 'starlight';
    height: 80vh;
  } */

  #header {
      
    background-color: rgb(0, 0, 0);
    display: flex;
    color: #ffffff;
    justify-content: center;
    font-size: 6rem;
    font-family: 'plank';
    position: fixed; /* Fixed position - sit on top of the page */
    top: 0;
    width: 100%; /* Full width */
    transition: 0.2s; /* Add a transition effect (when scrolling - and font size is decreased) */
    
  
  } 

  #header h1 {
    margin-right: 5vw;  
  }
  
  .main {
    margin-top: 40vh;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accord_pad {
    padding-top: 10vh;
  }


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: rgb(233, 233, 233); 
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 80%;
  text-align: left;
  border: none;
  border-radius: 15px;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;

}


/* 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, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color:rgb(197, 197, 197);
  display: none;
  overflow: hidden; 
  border-radius: 15px;
  width: 75%;
  
}
  

.accordion:after {
  content: '\02199'; /* Unicode character for "plus" sign (+) */
  font-size: 20px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2197"; /* Unicode character for "minus" sign (-) */
}








.col{
  background-color:white;
  margin-bottom: 5px;
  align-self: self-start;
  padding: 10px;
  

  border-radius: 25px;



}

