@font-face {
  font-family: 'Lato';
  font-display: swap;
}

@font-face {
  font-family: 'Titillium Web';
  font-display: swap;
}

html {
    scroll-behavior: smooth;
  }
  
  body {
      background-color: #0A0E1C;
      color: #F7F0F5;
      font-family: "Lato", sans-serif;
      font-weight: 400;
      font-style: normal;
  }

  .navbar-brand img {
    margin: 0 0.75rem;
    object-fit: contain;
  }
  
  .navbar {
    background-color: #030313;
    padding: 1rem;
    font-size: 1.25rem;
  }
  
  .navbar-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .navbar-nav .nav-item {
    padding: 0 1.5rem;
    border-radius: 1.5rem;
  }
  
  #navbarNav {
    display: flex;
    justify-content: flex-end;
  }
  
  @media only screen and (max-width: 1000px) {
    #navbarNav {
      justify-content: center;
    }
  }
  
footer {
    background-color: #030313;
    padding: 1rem;

}

footer .footer-content {
    display: flex;
    justify-content: center;
}

footer .footer-content .footer-text a {
    color: #F7F0F5;
    text-decoration: none;
}


footer .footer-content .footer-text a:hover {
    color: #c0babe;
    text-decoration: none;
}