@font-face {
    font-family: "Garamond";
    src: url("./fonts/EB_Garamond/EBGaramond-VariableFont_wght.ttf");
    
  }
  @font-face {
    font-family: "Garamond";
    src: url("./fonts/EB_Garamond/EBGaramond-Italic-VariableFont_wght.ttf");
    
  }
  


Body {
    
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    /* position: fixed; */
    z-index: 100;
    width: auto;
    height: 7%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    background-color: white;
    border-bottom: 5px double gray;
    margin-top:-10px;

}
  

.navbar-links ul {
    display: flex;
}

.navbar-links li {
    list-style: none;
    font-size: 1.5rem;
}



.link {
    position:relative;
    padding-bottom: 8px;
    cursor: pointer;
}

.link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0%;
    height: 3px;
    background-color: #063970;
    transition: width 0.4s ease-out;
    
}

.link:hover.link::after {
    width:75%;
}

.navbar-links li a {

    margin-right:2rem;
    text-decoration: none;
    color: black;
    
}

/* .navbar-links li a:hover {
    color: #edb722;
    cursor: pointer;
  
} */


main a {
    font-size: 18px;
  }



.brand_logo {
    height:50px;

}

.brand-title a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.5rem;
    margin-left:1.5rem;
    display: block;
    text-decoration: none;
    color: gray;
    margin-top: 0px;
    
}

.brand-title a:hover {
    color:#edb722;
    text-decoration: none;
}


 


 
  .main-footer-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}


.main-footer-container ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    
}


.footer-nav img {
    width: 40px;
    height: 40px;
    margin-right: 30px;
    transform: translateY(-30px);
    
}



@media screen and (max-width: 800px) {
    a {
      font-size: 12px;
  }
      .brand-title {
          display: none;
        }
  
      .navbar {
        z-index: 100;
        width: 100%;
        height: 7%;
        margin-top:-10px;
        border-bottom: 5px double gray;
      }
  
      .navbar-links {
          
          font-size: 12px;
          transform: translatex(-30px);
          
      }
  
      .navbar-links ul {
         
      }
  
      .navbar-links ul li {
         
      }
  
      .navbar-links ul li a {
          padding: 0px;
          margin-right: 1rem;
      }
  
      .navbar-links.active {
          
      }
  
      
  .footer-nav img {
    width: 30px;
    height: 30px;
  
  }
  }