@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");


.nav-link:hover {
  color: yellowgreen;
}

.nav-link::after,
.nav-link::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #d91f1c, white);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.nav-link::before {
  top: -5px;
  transform-origin: left;
}

.nav-link:hover::after,
.nav-link:hover::before {
  transform: scaleX(1);
}

.nav-link {
  font-size: 1.4rem;
  /* border: 2px solid rgb(255, 255, 255) ; */
  padding : 8px 15px;
  border-radius: 25px;
  color: rgb(255, 255, 255);
  /* width: 110px; */
  text-align: center;
  font-family: "VT323", serif;
  display: inline-block;
  position: relative;
}

.navbar-toggler {
  background-color: white;
}

.navposition{
    background-color: rgb(2, 74, 175);
    position: fixed;
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 20px 0;
  }
  
  .container-fluid {
   justify-content: space-between !important;
    align-items: center !important;
  }
  
  .navbar-nav{
    justify-content:center;
    gap: 40px !important;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.4rem;
    /* border: 2px solid rgb(255, 255, 255) ; */
    padding : 8px 15px;
    border-radius: 25px;
    color: rgb(255, 255, 255);
    /* width: 110px; */
    text-align: center;
    font-family: "VT323", serif;
  }
  
  /* .nav-link:hover {
    color: rgb(2, 74, 175);
    background-color: white;
  } */
  
  .logo img {
    height: 50px;
    width: auto;
    margin-left: 0px;
  }

  .roboto-regular {
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }  
  
  li, p {
    font-family: "Roboto", serif;
  }
  
  .vt323-regular {
    font-family: "VT323", serif;
    font-weight: 400;
    font-style: normal;
  }


@media (min-width: 800px) {
    .responsive-navbar-home{
      margin-left: 70px !important;
    }
  }
  
  
  @media (min-width: 700px) {
    .responsive-navbar-home{
      margin-left: 30px;
    }
  }
  
  @media (max-width: 991px) {
    .media-navbar-sm {
      /* text-align: center !important; */
      display: flex !important;
      justify-content: center !important;
      align-items: center !important;
  
      background-color: rgb(2, 74, 175);
      /* position: fixed; */
      width: 100%;
      padding: 10px 0px;
      box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    }
  }
