@font-face {
    font-family: "Didact Gothic";
    src: url("../media/Didact_Gothic/DidactGothic-Regular.ttf");
  }

  @font-face {
    font-family: "Spectral";
    src: url("../media/Spectral/Spectral-ExtraLight.ttf");
  }
  @font-face {
    font-family: "Dela Gothic One";
    src: url("../media/Dela_Gothic_One/DelaGothicOne-Regular.ttf");
  }
  @font-face {
    font-family: "Jet Brains Mono";
    src: url("../media/JetBrains_Mono/JetBrainsMono-Medium.ttf");
  }


  html {
    line-height: 1;
  
  }

  body {
    font-family: "Spectral";
    color: black; 
    background-image: linear-gradient(#B5684B, #C49855, #89875A, #9F9559, #B7A555); 
    width: 100%;
    height: 100%;
  }

  .title {
    font-family: 'Dela Gothic One';
    color: black;
  }

  .subtitle {
    font-family: 'Jet Brains Mono';
    color: black;
    font-size: 45px;
    width: 50%;

  }

  .author {
    font-family:'Didact Gothic';
    color: black;  
    font-size: 35px;
  }
  
.image-container {
  text-align: center; /* Center the image container if needed */
  clip-path: inset(3px);
}
.image-container-bottom{
  display: flex;
  justify-content: center; /* Centers the image horizontally */
  align-items: center; /* Centers the image vertically if needed */
  width: 100%; /* Makes the container full width */
  overflow: hidden; /* Prevents any overflow from the image */
  padding-left: 10%;
}

.header-image {
  max-width: 100%; /* Makes the image responsive */
  max-height: 500px; /* Adjust based on your header's height */
  width: auto; /* Maintain aspect ratio */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Use block to apply margin: auto */
  margin: auto; /* Center the image horizontally */
  border: none; 
  
}
.bottom-image {
max-width: 100%; /* Ensures the image scales to fit the container */
  width: auto; /* Maintains original aspect ratio */
  height: auto; /* Maintains original aspect ratio */
  object-fit: cover; /* Adjusts how the image fits within its box */
  object-position: center; /* Centers the content of the image */
  display: block; /* Centers with margin auto */
  margin: auto; /* Centers horizontally */
}
.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; 

  }
  /* 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;
  }
    
  .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; 

  }
  /*This is just to change the color of the hyperlinks*/
  /* unvisited link */
  a:link {
    color: #bcb3b1 ;
  }

  /* visited link */
  a:visited {
    color: green;
  }

  /* mouse over link */
  a:hover {
    color: white;
  }

  /* selected link */
  a:active {
    color: white;
  }
  /*end of hyperlink change*/

  .bold-text{
    font-weight: 1000;
  }

@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{
        font-size: 5vw !important;
        width: 55;
      }
      .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;
    }

  }


  