@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
a {
  text-decoration: none;
  color: #fff;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  backdrop-filter: blur(15px);
  display: flex;
  justify-content: space-between;
  z-index: 100;
}
/* ULLLLLLL */
.navbar ul {
  text-align: center;
  list-style: none;
}

.navbar ul li {
  display: inline-block;
  position: relative;
}

.navbar ul li a {
  padding: 0;
  margin: 0;
  display: block;
  padding: 5px 5px;
  text-decoration: none;
  color: #fff;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* background: #ca7c7c; */
  text-align: center;
}

.dropdown-content li {
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  backdrop-filter: blur(15px);
  display: block;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content li:hover {
  background: #000000dc;
}
.dropdown:hover > a {
  color: rgb(54, 227, 240);
}
/* ULLLLLLLL */
.logo {
  position: relative;
  font-size: 25x;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
  align-self: center;
}
.navbar a {
  color: rgb(255, 255, 255);
  font-size: 1;
  text-decoration: none;
  font-weight: 500;
  margin-left: 35px;
  transition: 0.3s;
}

.navbar a:hover {
  color: rgb(54, 227, 240);
}
section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: url("../../img/main/blackback.615fd925006b.svg") no-repeat;
  background-size: cover;
  background-position: center;
  animation: animateBg 5s linear infinite;
}
@keyframes animateBg {
  100% {
    filter: hue-rotate(360deg);
  }
}

.main-box {
  position: relative;
  width: 800%;
  height: 450px;
  background: transparent;
  /* border: 2px solid rgba(255, 255, 255, 0.5); */
  border-radius: 20px;

  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid rgba(255, 255, 255, 0.5); */
  /* backdrop-filter: blur(15px); */
}

h2 {
  font-size: 2em;
  color: #fff;
  text-align: center;
}

.input-box input {
  width: 100%;
  height: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1em;
  color: #fff;
  padding: 0 35px 0 5px;
}

.input-box input:focus ~ label,
.input-box input:valid ~ label {
  top: -5px;
}

@media (max-width: 460px) {
  .header {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .logo {
    font-size: large;
    align-self: center;
    order: -1;
    color: rgb(230, 241, 75);
    animation: animateBg 5s linear infinite;
  }
}

@media (max-width: 367px) {
  .header {
    font-size: small;
  }
  .main-box {
    width: 100%;
    height: 100vh;
    border: none;
    border-radius: 0;
  }
}
