body {
  background-color: rgb(233, 224, 245);
  font-family: "Roboto Condensed", sans-serif;
}

a {
  color: #2217b6;
}

.container {
  background: #fff;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(184, 145, 235, 0.8);
  border-radius: 15px;
}

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

.search-form-input {
  background: rgb(233, 224, 245);
  border: none;
  border-radius: 5px;
  width: 80%;
  padding: 15px;
  font-size: 16px;
}

.search-form-submit {
  background: rgba(80, 47, 80, 0.986);
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  color: #fff;
  margin-left: 5px;
  font-size: 16px;
}

main {
  padding: 30px 0;
}

.main-weather-data {
  display: flex;
  justify-content: space-between;
}

.weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.weather-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

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

.weather-temp-container {
  display: flex;
}

.weather-icon {
  width: 88px;
  height: 88px;
}

.weather-temp {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

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

.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.4);
  margin-bottom: 10px;
}

.forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}

.forecast-temperatures {
  text-align: center;
  color: #f30049;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.forecast-temperature {
  padding: 0 10px;
}

footer {
  text-align: center;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
}
