* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Kumbh Sans", sans-serif;
}

body {
  background-color: #daf0db;
  overflow-x: hidden;
}

/* Scrollbar (customized) */
body {
  --sb-track-color: #141414;
  --sb-thumb-color: rgb(131, 204, 89);
  --sb-size: 28px;
}
body::-webkit-scrollbar {
  width: var(--sb-size);
}
body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}
body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
  border: 3px solid #034003;
}
@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

/* Navbar */
.navbar {
  background: #120a8f;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 0 50px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
}
.navbar__item {
  height: 80px;
}
.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 16px;
  height: 100%;
  width: 150px;
}
.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
}
.button {
  padding: 10px 20px;
  border-radius: 4px;
  background: rgb(131, 204, 89);
  color: #fff;
  font-size: 1.3rem;
  border: none;
}
.button:hover {
  background: rgb(51, 139, 147);
  transition: all 0.4s ease;
}
.navbar__links:hover {
  color: rgb(131, 204, 89);
  transition: all 0.4s ease;
}
#navbar__logo {
  background-image: linear-gradient(to right, rgb(131, 204, 89), rgb(51, 139, 147));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.6rem;
  font-weight: 600;
  text-decoration: none;
}

/* Main content */
.main {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #daf0db;
}
.main h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  background-image: linear-gradient(to right, rgb(131, 204, 89), rgb(51, 139, 147));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main__container {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  max-width: 900px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  line-height: 1.6;
  color: #120a8f;
}
.main__container p {
  margin-bottom: 1.2rem;
}
.main__container ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
}
.main__container a {
  color: rgb(51, 139, 147);
  text-decoration: underline;
}

/* Footer */
.footer__container {
  background-color: #120a8f;
  padding: 3rem 0;
  text-align: center;
}
.footer__logo {
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
}
.website__rights {
  color: #fff;
  margin-bottom: 1rem;
}
.social__icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social__icon--link {
  color: #fff;
  font-size: 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .main__container {
    padding: 1.5rem;
    font-size: 1rem;
  }
  .main h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 480px) {
  .main__container {
    padding: 1rem;
  }
  .main h1 {
    font-size: 2rem;
  }
}

