  @font-face {
  font-family: "Chakra Petch Bold";
  src: url("../fonts/ChakraPetch-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  }

  @font-face {
  font-family: "Chakra Petch Medium";
  src: url("../fonts/ChakraPetch-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  }


  html {
    line-height: 1;
  
  }

  /* Main Paragraph Body Text  */
  body {
    font-family: "Chakra Petch Medium";
    font-weight: 500;
    font-style: normal;
    color: black; 
    background: #C3DAE4;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: visible;
  }

  /* Title */
  .title {
    font-family: "Chakra Petch Bold";
    font-weight: bolder;
    font-style: normal;
    color: #000000;
    font-size: 65px;
    width: 100%;
    margin: 10px 0;
  }

  /* Subtitle */
  .subtitle {
    font-family: "arial", sans-serif;
    color: #000000;
    font-size: 40px;
    width: 100%;
    margin: 10px 0;

  }

  

  /* Author */
  .author {
    font-family: "Chakra Petch Bold", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #000000;  
    font-size: 30px; 
    margin: 5px 0;
    width: 80vw; 

  }
  

/* Tribune Nav Bar Stuff  */
.section-header {
  color: black;
  font-family: 'Amplitude-Black';
  font-size: 24px !important;
  background-color: white;
  border: 2px solid black;
  padding: 10px;
  display: inline-block;
  text-align: center;
}

.filler {
    height: 10vw;
    opacity: 0;
    background-color: black;
  }
  
  .tribune {
    font-family: "Playfair Display" !important;
    margin-left: 2vw;
    color: #c7c1c7 !important;
    float: left;
    font-size: 32px;
  }
  
  .tribune a {
    text-decoration: none !important;
    color:#c7c1c7 !important;
    cursor: pointer;
  }
  
  .feature {
    font-family: "Garamond 3 LT Std";
    margin-right: 2.5vw;
    color: #c7c1c7;
    float: right;
    margin-top: 1vw;
    font-size: 30px;
  }
  :root {
    --nav-height: 70px; 
  }
    
  .header {
    position: fixed;
    background: #000000;
    z-index: 5;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
  }
  .nav-hidden{
    transform: translateY(-90px);
  }
  

  .cover {
    padding-top: 85px;
    overflow: hidden;
    position: relative;
    height: 10%;
    margin-top: 0px;
    border: none; 
    outline: none; 
  }
  
  .row {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center horizontally */
    justify-content: center; /* Center vertically */
    text-align: center;
    position:relative;
  }
  .innerwrap p {
    margin-bottom: 2em;
    font-size: 22px;
    border: none; 
    outline: none; 

  .h2 {
      text-align: left; 
  }

  }
  /* First letter styling */
  .innerwrap > p:first-of-type::first-letter {
    font-size:70px;
    text-decoration: bold;
    float: left;
    line-height: 60px;
    padding-right: 8px;
    margin-top:3px;
    color: #000000; 
    font-family: "Chakra Petch Medium", sans-serif;
  }
  
  /* Body Text Formatting */
  .innerwrap {
    width: 50%;
    height: 100%;
    max-width: 100%;
    margin:  auto;
    padding: 2px 0;
    font-size: 3em;
    line-height: 1.6;
    text-align: left;
    border: none; 
    outline: none;
   
    
  }


.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; /* Adds spacing above and below */
}

.image-container img {
    width: 50vw; /* Adjust size as needed */
    height: auto;
    max-width: 100%;
}


.image-container-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;                
  transform: translateX(-50%); 
  z-index: -1;              
  pointer-events: none;     
}

.image-container-bottom img {
  width: 70vw;              
  height: auto;             
  display: block;          
}


.innerwrap p {
  text-align: justify; /* Justify text for better flow around the image */
}

.innerwrap::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive to Screen Size  */

@media (max-width: 415px) {
    
      .tribune{
        font-size: 28px;
      }
      .feature{
        margin-top: 1.8vw;
        font-size: 25px;
      }

      .title {
        width: 80%;
      }

      .subtitle {
        width: 75%;
      }

      .author {
        width: 70%;
      }

      .quote {
        font-size: 25px !important;
      }
  
    
  }
  @media (min-width: 416px) {
    .title{
      width: 80%;
    }
    .subtitle {
      width: 80%;
    }
    .author {
      width: 100%; 
    }
    .tribune{
      font-size: 32px;
    }
    .feature{
      margin-top: 1vw;
      font-size: 30px;
    }
    .bottom-image {
      width: 150%;
      max-width: none; /* Allows the 150% to apply on larger screens */
      margin: 0 auto;
    }
   
}
  @media (max-width: 768px) {
    .innerwrap{
      width: 80% !important;
    }

     .image-container img {
    width: 90vw;
  }

  }



  