/* 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: '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;
}





  body {
    font-family: 'littera';
    background-color: beige;
  }
  

  hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 2px;
    border-color: #555;
  }


  
#gooning{
    background-color: rgb(0, 0, 0);
    color:beige;
    text-align: left;
    padding: 1rem;
    font-family: 'panoptica';
    font-size: 3vw;
}


#marquee{
    color: beige;
    font-family: 'ordre-de-depart';
    font-size: 4vw;
    padding-bottom: -20px;
    padding-top: -20px;
}



  /* Header styles */
  header {
    background-color: beige;
    color: #000000;
    text-align: left;
    padding: 1rem;
    font-family: 'panoptica';
  }
  
  /* Navigation styles */
  /* nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    background-color: #444;
    padding: 0.5rem 0;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: #fff;
  } */
  
  /* Main content styles */
  main {
    padding: 2rem;
    text-align: left;
  }
  
  button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
  }
  
  button a {
    color: #fff;
    text-decoration: none;
  }
  
  button:hover {
    background-color: bisque;
    color: black;
  }





/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #d8612a;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 15px;
  outline: none;
  transition: 0.4s;
}

.accordion2 {
  background-color: #d82a61;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  border-radius: 15px;
  outline: none;
  transition: 0.4s;
}

/* 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: #9d62dd;
}

/* Style the accordion panel. Note: hidden by default */
.panel {

  padding: 0 60px;
  background-color:#dec2fd;
  display: none;
  overflow: hidden;
  border-radius: 15px;
  
  
}

.panel2 {

  padding: 0 60px;
  background-color:#fdc2ea;
  display: none;
  overflow: hidden;
  border-radius: 15px;
  
  
}

.split-container {
  display: flex;
  height: calc(100vh - (16px *2)); 
}

.left-panel{
  flex: 1;
  height: auto;
  overflow-y: scroll; 
  display: flex;
  flex-direction : column; 
}
.right-panel {
  align-content: flex-end;
height: auto;

display: flex;
flex-direction : column; 
}