/* General Styles */
body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #00ff99;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Banner Styling */
.banner {
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(90deg, #ffcc00, #ff0099, #00ffff);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 3rem;
  text-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.banner-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-bottom: 20px;
}

/* UFO Navigation Toggle */
.ufo-container {
  text-align: center;
  margin: 20px 0;
}

.ufo {
  width: 300px; /* Make the UFO larger */
  height: auto; /* Maintain aspect ratio */
  cursor: pointer;
  animation: hover 2s infinite;
  filter: drop-shadow(0 0 10px #fff);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ufo:hover {
  transform: scale(1.2); /* Enlarge even more on hover */
  filter: drop-shadow(0 0 15px #00ff99);
}

.ufo-container {
  text-align: center;
  margin: 20px auto;
}
.ufo {
  width: 400px; /* Massive UFO size! */
}

@keyframes hover {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Dropdown Navigation */
#dropdown-nav {
  display: none;
  text-align: center;
  background-color: #222;
  padding: 10px 0;
}

#dropdown-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#dropdown-nav li {
  margin: 0;
}

#dropdown-nav a {
  font-size: 1.2rem;
  color: #fff;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

#dropdown-nav a:hover {
  border-color: #00ff99;
  background: linear-gradient(90deg, #00ff99, #ff00ff, #00ffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Layout: Flexbox */
#flex {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

/* Sidebar Styling */
aside {
  width: 25%;
}

.box {
  background-color: #111;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.box h2 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* Main Content */
main {
  width: 50%;
  text-align: center;
}

/* Moving Images Section */
.moving-images {
  position: relative;
  overflow: hidden;
  background-color: #111;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.moving-images img {
  position: absolute;
  width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}
/* Footer Styling */
footer {
  text-align: center; /* Centers the content horizontally */
  padding: 20px; /* Adds spacing inside the footer */
  background-color: #111; /* Matches sidebar and moving images sections */
  color: #fff; /* Ensures text is readable */
  border-top: 2px solid #00ff99; /* Adds a stylish separator */
  margin-top: 20px; /* Space between content and footer */
}

footer p {
  margin: 0; /* Removes default paragraph margins */
}

@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
