.nav-container{
    display:flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Needed for absolute positioning of title */
    background-color: #ffffff;
    font-family:"degular-mono", 'sans-serif';
    font-weight:500;
    font-style:normal;
    font-size:1em;
    margin-top:50px;
    margin-bottom:8em;
    line-height:1em;
    width:100%;
  }
  
  .ode-container{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
  
  
  .ode-container h2{
    font-family: "stix-two-text", serif;
    font-weight:600;
    font-style: normal;
    font-size:2.75em;
  }
  
  .mobile_break{
    display: none; /* Hide the mobile break by default */
  }
  
  .left-side, .right-side {
    display: flex;
    gap: 10px; /* or whatever spacing you want between links */
  }
  
  .left-side {
    margin-left: 30px;
  }
  
  .right-side {
    margin-right: 20px;
  }
  
  
  .nav-container a{
    text-decoration: none;
    color: #000000;
    padding:none;
    margin:0;
  }
  
  #home a:hover{
    color: #e90c98;
    transition: color 0.3s ease-in-out;
    text-decoration:underline;
  }
  
  #essay:hover{
    color: #fb7d12;
  }
  
  #resources:hover{
    color: #babe00;
  }
  
  #bio:hover{
    color: #864188;
  }


/*--------------------------------------TITLE-------------------------------------------*/

.title-container{
  display:flex;
  flex-direction: column;
  padding-bottom:60px;
  text-align: center; 
  line-height:1.75em;
}

.title-container h1{
  font-family:"degular-mono", 'sans-serif';
  font-weight:600;
  font-style:normal;
  font-size:3em;
  margin:0;
  padding:0; 
}

.title-container p{
  text-align: center; 
  font-family:"degular-mono", 'sans-serif';
  font-weight:300;
  font-style:normal;
  font-size:1.25em;
  text-decoration: #864188 underline
}

.text-container{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family:"degular-mono", 'sans-serif';
  font-weight:300;
  font-style:normal;
}

.section-container{
  /* margin-bottom:60px;*/
  max-width:1000px;
  margin: 0 0 40px 0;
  padding:0;
  text-wrap: wrap;
}

.section-title{
  font-family:"degular-mono", 'sans-serif';
  font-weight:500;
  font-style:normal;
  text-align: center;
  text-decoration:underline;
}

.text-container a{
  color: #000000;
  text-decoration: none;
  transition: text-decoration 0.3s ease-in-out;
  font-weight:600;
}

.text-container a:hover{
  text-decoration:underline;
  color:#85b440;
}

.article-list{
  padding-top:20px;
  margin:0;
  padding:0;
  max-width:1500px;
}
.article-list li{
  margin-bottom: 10px;
}


/* --------------------------------------------------MEDIA QUERIES--------------------------------------------*/


@media (max-width: 1100px) {
    .ode-container span {
    display:block;
    text-align: center;
    }
  
    #ode-title{
      line-height:1em;
      font-size: 2.5em;
    }
  
    .left-side, .right-side {
      flex-direction: column;
      align-items: center;
      flex-wrap: wrap; /* Allow items to wrap */
      margin: 0;
    }
  
    .left-side {
      margin-left: 50px;
    }
  
    .right-side {
      margin-right: 50px;
    }
  
    .right-side span{
      display:block; 
      text-align:center;
    }
  
   .divider{
      rotate: 90deg;
    }
  
    .right-side a,
    .left-side a 
    {
    gap:0px;
    line-height: 17px;
    }
  
    .title-container span{
      display:block;
      text-align: center;
      height:5px;
    }
    .author{
      padding-top:1.5em;
    }
    
    .content-container {
      padding: 0 70px; /* Add padding to the content container */
    }

    .title-container{
      padding: 50px 20px; 
    }
  
  }
  
  @media (max-width: 920px) {
  
    #ode-title {
      flex-wrap: wrap;
      font-size: 2em;
    }
  
    .ode-container span {
      display:block;
      text-align: center;
    }
  
    .right-side span{
      display:block; 
      text-align:center;
    }
  
    .left-side span{
      display:block; 
      text-align:center;
    }

    .right-side {
      margin-right: 20px;
      padding:none;
    }
    .left-side {
      margin-left: 30px;
      padding:none;
    }
  
    #header{
      line-height: 1.5em;
  
    }
  }


  @media (max-width >= 800px) {

  }

