:root {
  --primary: #851cab;
  --primaryLight: #18212e;
  --secondary: #3bc080;
  --secondayLight: #4b9c5c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondayLight);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--secondayLight);
}

body {
  font-family: "Nunito", sans-serif;
  min-height: 100vh;
  overflow-x: hidden !important;
}
.banner {
  background-image: url("../assets/Banner.jpg");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.links {
  font-weight: 600;
  font-family: "Nunito";
}
.form-control {
  font-size: 14px;
  color: #74757a;
  padding: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}
.form-control:focus {
  border: none;
  outline: 2px solid var(--secondayLight);
}

.form-btn {
  background-color: var(--secondayLight) !important;
}
.package-img {
  aspect-ratio: 5/3;
}
.post-img {
  aspect-ratio: 5/3;
}
.about-us {
  background-color: var(--secondary);
}
.submit-section {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
