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

a {
  color: #885df1;
}

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

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

.search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  padding: 20px;
  width: 75%;
  border-radius: 6px;
}

.search-button {
  margin-left: 5px;
  font-size: 16px;
  background-color: #885df1;
  color: white;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
  cursor: pointer;
}

main {
  padding: 30px 0;
}

.current-weather {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.current-city {
  font-size: 38px;
  font-weight: 900;
  margin: 10px 0;
}

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

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

.weather-app-icon img {
  width: 80px;
  height: 80px;
  display: block;
}

.current-temperature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-temperature-value {
  font-size: 88px;
  font-weight: bold;
  line-height: 1;
}

.current-temperature-unit {
  font-size: 28px;
  position: relative;
  top: -10px;
}
.forecast {
  justify-content: space-between;
  display: flex;

  margin-top: 20px;
}

.forecast-date {
  font-size: 14px;
  color: rgba(39, 33, 66, 0.4);
  margin-bottom: 10px;
  text-align: center;
  font-weight: 500;

}

.forecast-icon {
  text-align: center;
  margin-bottom: 10px;
  
}

.forecast-temperatures {
  text-align: center;
  font-size: 15px;
  font: weight 300px;
  margin-bottom: 10px;
  color: #f65282;
  display: flex;
  justify-content: center;
}

.forecast-temperature-max {
  padding: 0 15px;
  font-weight: 700;
}
.forecast-temperature-min {
  padding: 0 15px;
  font-weight: 400;
}

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