body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
  color: #272142;
}

.weather-app {
  max-width: 650px;
  margin: 50px auto;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(65, 50, 100, 0.08);
}

.search-form {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f3f2fa;
  padding-bottom: 25px;
}

.search-form input {
  width: 80%;
  background: #f9f7fe;
  border: none;
  border-radius: 8px;
  padding: 15px 20px;
  font-size: 16px;
}

.search-form button {
  background: #885df1;
  border: none;
  color: white;
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 16px;
}

.weather-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}

#city {
  font-size: 42px;
  margin: 0;
}

.weather-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.6);
  margin-top: 10px;
}

.weather-details strong {
  color: #f65282;
}

.temp-container {
  display: flex;
  align-items: center;
}

#icon img {
  width: 88px;
  height: 88px;
}

.temp {
  font-size: 90px;
  font-weight: bold;
}

.unit {
  font-size: 28px;
  margin-top: 6px;
}

#forecast {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 40px;
}

.forecast-day {
  font-size: 18px;
  margin-bottom: 8px;
}

.forecast-temp {
  color: #f65282;
  font-weight: 500;
  margin-top: 6px;
}

footer {
  border-top: 1px solid #f3f2fa;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
