*{
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 110px; /* adjust this to your navbar height */
}

body {
  background-color: #ffdb67 !important;
  padding-top: 120px;
}

/* Works for WebKit browsers (Chrome, Safari, Edge, etc.) */
body::-webkit-scrollbar {
  display: none;
}

.navbar{
  background-color: #ffdb67 !important;
}

@media (min-width: 992px){
.gaps{
  gap: 50px;
}
/* .sec-center{
  padding-top: 100px;
} */
}

.nav-logo{
  font-size: xx-large !important;
  font-family:cursive !important;
  
}

li>a{
    font-size: large !important;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
}

section {
  min-height: 90vh;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #121212;
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  gap: 15px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.bottom-nav a {
  color: white;
  background: transparent;
  border: 2px solid white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.bottom-nav a:hover {
  background: white;
  color: black;
}
