@charset "UTF-8";

/* font import */
@import url('https://fonts.googleapis.com/css2?family=Battambang&family=Moulpali&family=Raleway:wght@500;800&display=swap');
/* Footer */

footer{
  background-image: var(--footer-bg-image);
   background-color: #0A509B;
    background-size: cover; 
    background-position: center; 
    width:100%;
    margin-top: 5%;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    color: white;
  } 
  @media (max-width: 768px) {
    .footer {
        background-image: none !important;
    }
}
@media screen and (max-width: 1000px){
  footer{  
    background-color: #0A509B;
    background-image: none;
  }
  
}
  footer a{
    text-decoration: none;
    color: white;
    font-weight: lighter;
  }
  footer a:hover{
    color: silver;
  }
