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

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

header {
  border-bottom: 1px solid #f9f7fe;
  padding-bottom: 30px;
}

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

.search-button {
  background: #885df1;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
}

.current-weather {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.current-city {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
}

.current-details {
  color: rgba(39, 33, 66, 0.4);
  font-size: 14px;
  line-height: 20px;
}

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

.current-temperature {
  display: flex;
}

.current-temperature-icon {
  font-size: 40px;
  margin-top: 10px;
}

.current-temperature-value {
  font-size: 60px;
  font-weight: 700;
  margin-left: 10px;
}

.current-temperature-unit {
  font-size: 20px;
  margin-top: 10px;
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  text-align: center;
}

.forecast-day {
  flex: 1;
}

.forecast-day-name {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
}

.forecast-temperatures {
  font-size: 16px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.forecast-max {
  font-weight: 700;
}

.forecast-min {
  color: rgba(39, 33, 66, 0.4);
}

footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  padding-top: 15px;
  color: rgba(39, 33, 66, 0.4);
}

footer a {
  color: #885df1;
  text-decoration: none;
}
