body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #1F1F1F;;
  color: #e2e8f0;
  font-weight: bold;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #181818;
  padding: 1rem 2rem;
}

.logo, .navbar h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #38bdf8;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  text-decoration: none;
  background-color: #1F1F1F;
  color: #38bdf8;
  border-radius: 8px;
  border: 2px solid #38bdf8;
  transition: background-color 0.3s;
  white-space: nowrap;
}

.nav-links li {
  flex: 1;
}

.nav-links li a:hover {
  background-color: #f97316;
  color: white;
  cursor: pointer;
}

/* Weather container styles */
.weather-box {
  max-width: 700px;
  width: 90%;
  margin: 80px auto 20px auto;
  padding: 20px;
  border: 2px solid #38bdf8;
  border-radius: 10px;
  background-color: #181818;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
}

/* Weather text info */
.weather-info p {
  margin: 0.5em 0;
  font-size: 18px;
  color: whitesmoke;
}

/* Weather icons and dynamic content */
.weather-info img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

/* Buttons */
button {
  font-family: 'Orbitron', sans-serif;
  background-color: #0f172a;
  color: whitesmoke;
  border: 2px solid #38bdf8;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #f97316;
  color: white;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background-color: #1F1F1F;
  color: #e2e8f0;
}

/* Responsive */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    border:#38bdf8
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .weather-box {
    margin: 40px auto;
    padding: 15px;
    border:#38bdf8 2px;
    background-color: #1F1F1F;
  }

  .weather-info p {
    font-size: 16px;
    border:#38bdf8 2px;
    background-color: #1F1F1F;
  }
}