body {
  font-family: "Courier New", Courier, monospace;
  background-image: url("../Images/clouds.jpg");
  background-size: cover;
}

.weather-app {
  background: #70b8e8;
  max-width: 600px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 15px;
  margin: 50px auto;
  padding: 50px;
}

.search-input {
  background: #e0f2fe;
  border: none;
  border-radius: 5px;
  width: 75%;
  font-size: 18px;
  padding: 15px 20px;
}

.submit-button {
  background: #1e293b;
  color: #e0f2fe;
  font-size: 18px;
  margin: 15px;
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.submit-button:hover {
  background: #1e3a5f;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: translateY (5px, -2px);
}

h1 {
  color: #1e293b;
}

span {
  color: #1e293b;
  font-style: italic;
  font-size: 16px;
}

h2 {
  color: #475569;
  margin-bottom: 10px;
}

#presenttemperature {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: relative;
  top: -50px;
}

#temperature {
  font-size: 46px;
  color: #1e3a5f;
}

.weather-icon img {
  width: 120px;
  height: 120px;
}
p {
  color: #444647;
  margin-bottom: 0;
}

#weeklyforecast {
  border-top: 1px solid rgba(30, 58, 95, 0.3);
  padding-top: 20px;
}

.weather-forecast {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.weather-forecast-day {
  text-align: center;
  flex: 1;
}

.weather-forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  padding: 0 10px;
}
footer {
  margin-top: 65px;
  font-size: 14px;
  text-align: center;
}
