* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
  font-family: "roboto";
}

body {
  background: linear-gradient(90deg, rgb(84, 94, 156) 0%, rgb(135, 130, 196) 100%);
}

/* Navbar container */
.navbar {
  font-family: "roboto";
  color: white;
  display: flex;
  justify-content: flex-end;
  /* align items to the right */
  align-items: center;
  padding: 1rem 1rem;
  position: relative;
  z-index: 15;
}

/* Top navbar links */
.navbar-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  margin-right: 3rem;
}

.navbar-links li {
  margin-left: 2rem;
}

.navbar-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  position: relative;
}
.navbar-links li a::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: white;
  transform: translate(-50%, -50%);
  position: absolute;
  bottom: -2px;
  left: 50%;
  z-index: 5;
  width: 0;
  transition: ease-in 0.1s all;
}
.navbar-links li a:hover::before {
  width: 100%;
}

/* Hamburger button (hidden on large screens) */
.navbar-toggler {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  display: none;
}

/* Off-canvas menu (right side) */
.offcanvas {
  position: fixed;
  top: 0;
  right: -250px;
  /* hidden by default on the right */
  width: 250px;
  height: 100%;
  background-color: #555f9d;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 1000;
}

.offcanvas.open {
  right: 0;
}

.offcanvas-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offcanvas-links li a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 1rem;
}

.offcanvas-links li a:hover {
  background-color: #aeb4db;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  left: 15px;
  /* on right sidebar, close button on left inside */
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Overlay for off-canvas */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Responsive styles */
@media (max-width: 900px) {
  .navbar-links {
    display: none;
    /* hide top navbar links on small screens */
  }
  .navbar-toggler {
    display: block;
    /* show hamburger */
  }
}/*# sourceMappingURL=utilitys.css.map */