body {
  background-color: #180c24;
  font-family: "Orbitron", sans-serif;
}

a {
  color: #885df1;
}

.weather-app {
  max-width: 600px;
  margin: 40px auto;
  padding: 15px;
  border-radius: 10px;
  background-color: #180c24;
  border-radius: 2px solid cyan; /* Neon border */
  box-shadow: 0 0 1px cyan, 0 0 25px cyan, 0 0 3px cyan; /* Neon glow */
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0px 0px 10px 0px;
}

.search-form {
  display: flex; /* Flexbox layout */
  align-items: center; /* Align input and button vertically */
  justify-content: center; /* Center the form horizontally */
  gap: 5px; /* Reduce spacing between input and button */
  margin: 20px auto; /* Add some margin around the form */
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 70%;
  font-size: 16px;
  padding: 15px 20px;
  display: inline-block;
}

.search-form-button {
  padding: 16px 30px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  color: white;
  background-color: #ff007f;
  margin-left: 5px;
  text-shadow: 0 0 5px white, 0 0 10px white, 0 0 20px white;
  display: inline-block;
  justify-content: center;
}

main {
  padding: 30px 0px;
}

h1 {
  color: #ff007f;
  font-size: 50px;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
  color: cyan;
  font-weight: bolder;
  text-shadow: 0 0 3px cyan, 0 0 1px cyan, 0 0 1px cyan;
}

.weather-app-city {
  margin: 0px auto;
  font-size: 37px;
  font-weight: 100;
  text-shadow: 0 0 20px #ff007f, 0 0 1px #ff007f, 0 0 px #ff007f;
}

.weather-app-details {
  font-size: 15px;
  line-height: 20px;
  background-color: rgba(39, 33, 66, 0.4);
  color: cyan;
  text-shadow: 0 0 15px #ff007f, 0 0 5px #ff007f, 0 0 1px #ff007f;
}

.weather-app-details strong {
  color: #f65282;
}
.weather-app-temperature-container {
  display: flex;
  align-items: center;
  justify-content: start; /* Align everything to the left */
}

.weather-app-icon {
  width: 75px;
  height: 75px;
  margin-right: 10px; /* Space between icon and temperature */
}

.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
}

.weather-app-value {
  font-size: 65px;
  font-weight: bold;
  margin: 0px;
  text-shadow: 0 0 0px, 0 0 3px, 0 0 15px;
}

.weather-app-unit {
  font-size: 28px;
  margin-left: 5px; /* Controlled spacing */
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.weather-forecast-date {
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: cyan;
  text-shadow: none;
  padding: 20px;
}

.weather-forecast-icon {
  font-size: 38px;
  text-align: center;
  margin-bottom: 10px;
}

.weather-forecast-temperature {
  text-align: center;
  font-size: 20px;
  color: cyan;
  text-shadow: 0 0 15px #ff007f, 0 0 5px #ff007f, 0 0 1px #ff007f;
  display: flex;
  justify-content: center;
  padding: 10px;
}

footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  color: cyan;
  line-height: 65px;
  padding: 15px 0 0 0;
}
