* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.header {
  max-width: 480px;
  width: 100%;
  padding: 16px;
}
.header__list {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
}
.header__list__item {
  cursor: pointer;
  font-size: 20px;
}
.header__list__item .toggle_apps_btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #eee;
  font-size: 24px;
}
.header__list__item .toggle_apps_btn:hover {
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
}

.dropdown_content {
  display: none; /* Hide dropdown content by default */
  position: absolute; /* Position it below the button */
  right: auto;
  z-index: 1;
  background-color: #111a21;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  padding: 24px;
  margin-top: 8px;
  margin-left: -200px;
  opacity: 0; /* Start invisible */
  transition: visibility 0s, opacity 0.3s ease-in-out;
  visibility: hidden;
}

/* Ensure vertical alignment in center for dropdown items */
.dropdown_content > ul {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  flex-wrap: wrap;
}
.dropdown_content > ul li a {
  font-size: 24px;
  color: #eee;
}
.dropdown_content > ul li:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

.show {
  display: block; /* Make it block to show */
  opacity: 1; /* Make visible */
  visibility: visible;
}

body {
  height: 100vh;
  background: linear-gradient(45deg, #101010, #0c1217);
  overflow: hidden;
  color: #eee;
}

body.lightTheme {
  background: linear-gradient(45deg, white, #b3cde0);
  color: #0c1217;
}
body.lightTheme .header__list__item a {
  color: #0c1217;
}
body.lightTheme .header__list__item .bi {
  color: #0c1217;
}
body.lightTheme .dropdown_content {
  background-color: #d9d9d9;
}
body.lightTheme .dropdown_content ul li > a {
  color: #0c1217;
}
body.lightTheme .main__title {
  color: #009c9c;
}
body.lightTheme .main__input {
  border: 1px solid #0c1217;
  background-color: #e5e5e5;
}
body.lightTheme .main__input:hover {
  background-color: #d9d9d9;
}
body.lightTheme .footer {
  background-color: #d9d9d9;
}
body.lightTheme .footer p {
  color: #0c1217;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@keyframes titleAnimation {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.main {
  padding: 8px;
}
.main__title {
  color: #b6ffff;
  font-size: 48px;
  animation: titleAnimation 3s ease-in-out infinite;
}
.main #form {
  max-width: 414px;
  width: 100%;
}
.main__input {
  padding: 16px;
  margin-top: 4px;
  border: 1px solid #0c1217;
  border-radius: 24px;
  background-color: #ffffff;
  width: 100%;
}
.main__input:hover {
  background-color: #eee;
}
.main__input:focus {
  outline: none;
}

.footer {
  background-color: #111a21;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 8px;
  text-align: center;
}
.footer p {
  font-size: 8px;
  opacity: 50%;
}

/* Styles for mobile phones (portrait mode) */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .container {
    max-width: 480px;
  }
  .dropdown_content ul {
    width: 100%; /* Full width for smaller screens */
  }
}
/* Styles for mobile phones (landscape mode) */
@media only screen and (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
  .header {
    max-width: 767px;
  }
  .container {
    max-width: 767px;
  }
  .dropdown_content ul {
    width: 100%; /* Full width for smaller screens */
  }
}
/* Styles for tablets (portrait mode) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
  .header {
    max-width: 768px;
  }
  .container {
    max-width: 768px;
  }
  .dropdown_content ul {
    width: 100%; /* Full width for smaller screens */
  }
}
/* Styles for larger tablets (portrain mode) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .header {
    max-width: 1024px;
  }
  .container {
    max-width: 1024px;
  }
}
/* Styles for tablets (landscape mode) */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .header {
    max-width: 1024px;
  }
  .container {
    max-width: 1024px;
  }
}
/* Styles for laptops and small desktops */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .header {
    max-width: 1200px;
  }
  .container {
    max-width: 1200px;
  }
}
/* Styles for larger desktop screens */
@media only screen and (min-width: 1201px) and (max-width: 1440px) {
  .header {
    max-width: 1440px;
  }
  .container {
    max-width: 1440px;
  }
}
/* Styles for ultra-wide or 4K displays */
@media only screen and (min-width: 1441px) and (max-width: 2560px) {
  .header {
    max-width: 2560px;
  }
  .container {
    max-width: 2560px;
  }
}

/*# sourceMappingURL=main.css.map */