@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Knewave&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: inter, sans-serif;
}
/* body {

  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

body {
  background-image: url(../img/bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* Make background fill the visible viewport on mobile and desktop */
  min-height: 100dvh; /* modern dynamic viewport */
  height: 100vh; /* fallback */
  height: -webkit-fill-available; /* Mobile Safari */

  /* ensure footer stays at the end */
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
}
/* ensure main grows to push footer to bottom */
main {
  flex: 1 0 auto;
}
/* alternatively ensure footer always at end */
footer {
  margin-top: auto;
}
@media (min-width: 768px) {
  body {
    /* height handled in base rule */
    justify-content: center;
  }
  main {
    margin: 0;
  }
  nav a {
    font-size: 1.5rem !important;
  }
  nav div span {
    font-size: 2rem !important;
  }
}
.knewave-regular {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
}

.br-50p {
  border-radius: 50%;
}
.nav:hover {
  background: rgba(150, 150, 150, 1);
  transform: scale(1.05);
  transition: all 0.3s;
}
.nav:hover span {
  transition: all 0.3s;
  color: #fff !important;
}

.w-mx {
  width: 100%;
}
.link:hover {
  background-color: rgba(0, 98, 45, 0.7) !important;
  transform: scale(1.03);
  transition: all 0.3s;
}
.link:hover div.open {
  background-color: rgba(255, 255, 255, 0.555) !important;
  transition: all 0.3s;
}
.link:hover div.open span,
.link:hover div.open i {
  color: rgb(52, 79, 31) !important;
  transition: all 0.3s;
}
.nav-menu {
  transform: translateY(100%);
  transition: 0.5s;
  position: fixed;
  bottom: 0;
}
.nav-menu.active {
  display: flex !important;
  transform: translateY(0);
}
@media (min-width: 768px) {
  body {
    height: 100vh !important;
    justify-content: center;
  }
  main {
    margin: 0;
  }
  nav a {
    font-size: 1.5rem !important;
  }
  nav div span {
    font-size: 2rem !important;
  }
}
