* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: visible;
  background-repeat: no-repeat;
  background: url("../assets/placeholder.gif");
  background-size: cover;
}

.disappear {
  animation: vanish 1s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

body {
  background: url("../assets/teambg.jpeg");
  color: white;
  overflow: hidden;
  overflow-y: scroll;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1A2421;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo img {
  width: 12em;
  height: 3.5em;
  margin-left: 20%;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: #1A2421;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 3px 14px;
}

.menu li a:hover {
  color: black;
}

input[type=checkbox] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 24px;
  user-select: none;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #1A2421;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    width: 100%;
  }

  .menu li a:hover {
    color: black;
  }

  .menu li+li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked~.menu {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);
  }
}

#contact {
  width: 100vw;
  max-width: 65rem;
  text-align: center;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contactHeading {
  margin: 1rem 0;
  font-size: 3rem;
  font-weight: 800;

}

.contactContent {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 200;
}

.contactForm {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90vw;
  max-width: 60rem;
}

.nameField,
.email,
.message {
  font-size: medium;
  width: 100%;
  /* max-width: 40rem; */
  margin: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
  border: none;
  border-radius: 0.5rem;
  background: rgb(40, 40, 40);


}

.submit {
  background-color: rgb(200, 200, 200);
  border: none;
  border-radius: 1rem;
  padding: 1rem 3rem;
  margin: 1rem 0;
  cursor: pointer;
}

.submit:hover {
  background-color: white;

}


.my-footer {
  background-color: #1b1b1b;
  color: white;
  /* border: 1px solid white; */
}

.footer-title {
  font-size: 2rem;
}

.footer-paragraph {
  font-size: 1.5rem;
}

.social-link>a {
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  margin-right: 1rem;
}


@keyframes vanish {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1b1b1b;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

/* LOGO */
.logo img {
  width: 12em;
  height: 3.5em;
  margin-left: 20%;
}

/* NAVBAR MENU */
.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
  margin-right: 2rem;
}

/* .menu li:hover {
    background-color: #1A2421;
    border-radius: 5px;
    transition: 0.3s ease;
  } */

.menu li {
  padding: 5px 14px;
}

.menu li:hover {
  background-color: #fff;
  color: #1b1b1b;
  border-radius: 3rem;

  transition: 0.5s ease;
}

.menu li a:hover {
  color: black;
}

input[type=checkbox] {
  display: none;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 40px;
  user-select: none;
  cursor: pointer;
}

/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #1b1b1b;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
  }

  .menu li:hover {
    display: inline-block;
    /* background-color: rgb(30,30,30); */
    background-color: #fff;
    color: #1b1b1b;
    transition: 0.3s ease;
  }

  .menu li a:hover {
    color: black;
  }

  .menu li+li {
    margin-top: 12px;
  }

  input[type=checkbox]:checked~.menu {
    display: block;
    z-index: 2;
  }

  .hamburger {
    display: block;

  }

  .dropdown {
    left: 50%;
    top: 30px;
    transform: translateX(35%);

  }
}