* {  
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lora';
  }
  
  /*-----NAV BAR-----*/
  
  .header-container {
  background-color: #19212E;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 999;
  }
  
  nav {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  
  nav img {
  height: 80px;
  }
  
  .nav-links {
  display: flex;
  list-style: none;
  justify-content: center; 
  align-items: center; 
  flex-grow: 1;
  padding-right: 150px;
  }
  
  .nav-links li {
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  }
  
  .nav-links li a {
  color: white;
  font-size: 20px;
  padding: 10px;
  text-decoration: none;
  }
  
  
  .nav-links li a:hover {
   color: red;
   transition: color 0.5s ease;
  }
  
  .nav-links li:hover {
    transform: scale(1.15);
    transition: transform 0.2s ease ;
  }
  
  .burger {
  display: none;
  cursor: pointer;
  }
  
  .burger div {
  width: 25px;
  height: 3px;
  background-color: white;
  margin: 5px;
  transition: all 0.3s ease;
  }
  
  @media screen and (max-width: 1200px) {
  .nav-links {
  padding-right: 70px;
  }
  
  .nav-links li {
    padding: 5px;
  }
  
  .nav-links li a{
    font-size: 17px;
  }
  }
  
  @media screen and (max-width: 800px) {
    .nav-links {
      display: none; 
      flex-direction: column;
      position: absolute;
      border-radius: 10px;
      border: solid 3px black;
      top: 90px;
      margin-left: 45%;
      justify-content: center;
      background-color: #11151C;
      width: 50%;
      padding-right: 0px;
    }
  
    nav img {
      height: 50px;
    }
  
    .nav-links li {
      margin: 0.5rem 0;
    }
  
    .burger {
      display: block;
    }
  
    body.menu-active .nav-links {
      display: flex;
    }
  
    body.menu-active .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    body.menu-active .line2 {
      opacity: 0;
    }
  
    body.menu-active .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  }

    /*-----IMAGE SECTION-----*/

  .background-section {
    position: relative;
    margin-bottom: 20px;
    height: 500px;
    background-position: 50% 30%;
    background-image: url("/images/ADbackground.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #364156;
  }


  @media screen and (max-width: 1800px) {
    .background-section{
      height: 450px;
    }
  }

  @media screen and (max-width: 1700px) {
    .background-section{
      height: 350px;
      background-position: 50% 20%;
    }
  }

  @media screen and (max-width: 1600px) {
    .background-section{
      height: 300px;
      background-position: 50% 10%;
    }
  }

  @media screen and (max-width: 1200px) {
    .background-section{
      height: 400px;
      background-attachment: scroll;
    }
  }

  @media screen and (max-width: 800px) {
 
  }

  @media screen and (max-width: 520px) {
    

    .image-text h2 {
      font-size: 2.2rem;
    }
  }

/*-----MAIN CONTENT-----*/

main {
    background-color: #364156;
}

.header-box{
    background-color: #212D40;
    color: white;
    margin: 0px 60px 0px;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .center-image{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .center-image img {
    height: 500px;
    border-radius: 10px;
  }

  .header-box p{
    padding: 10px 200px 10px;
  }

  .header-box h2 {
    text-align: center;
    font-size: 45px;
    padding-bottom: 20px;
    color: white;
    font-style: italic;
  }

  @media screen and (max-width: 1200px) {

    .header-box p {
      padding-top: 10px;
    }

    .header-box h2 {
      font-size: 35px;
    }

    .header-box p {
      padding: 10px 100px 10px;
    }

    .center-image img {
        height: 300px;
    }
  }

  @media screen and (max-width: 800px) {

    .image-container{
      margin-bottom: 15px;
    }

    .header-box{
      margin: 0px 25px 0px;
    }
    
    .header-box p {
      padding: 10px 50px 10px;
    }

    .header-box h2{
      font-size: 30px;
    }

  }

  @media screen and (max-width: 520px) {
  
    .image-text h3 {
      font-size: 35px; 
    }

    .image-container{
      margin-bottom: 10px;
    }

    .header-box{
      margin: 0px 25px 0px; 
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
    }
    
    .header-box p {
      padding: 10px 25px 10px;
    }

    .center-image img {
        height: 250px;
    }
  }

  /*-----FOOTER-----*/

  footer {
    background: linear-gradient(to top, #212D40, #364156);
    color: #000000;
    
  }
  
  .footer-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    justify-content: center;
    text-align: center;
  }
  
  .footer-content img {
    height: 30px;
    margin-left: 20px;
    transition: transform 0.3s ease;
  }
  
  .footer-content a:hover img {
    transform: scale(1.1);
  }

  footer p {
    font-size: 16px;
    font-style: italic;
  }

  @media screen and (max-width: 800px) {
    footer p {
      font-size: 14px; 
    }
  }