body {
  background: hsl(293, 27%, 81%);
  font-family: "Courier New", Courier, monospace;
}

a {
  color: #612ce8;
}

.weather-app {
  background: rgb(240, 232, 232);
  max-width: 700px;
  margin: 50px auto;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 30px 50px rgba(119, 90, 186, 0.08);
}

header {
  border-bottom: 1px solid hsl(293, 27%, 81%);
  padding-bottom: 30px;
}

.search-input {
  background-color: hsl(293, 27%, 81%);
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  padding: 10px;
  width: 70%;
  border-radius: 10px;
}

.search-button {
  margin-left: 10px;
  font-size: 16px;
  background-color: hsl(293, 27%, 81%);
  color: whitesmoke;
  padding: 10px;
  line-height: 1;
  border-radius: 10px;
}

main {
  padding: 30px 0;
}

.current-temperature {
  font-size: 40px;
}

.current-city {
  font-size: 38px;
  font-weight: 900;
  margin: 0;
}
.current-details {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.current-details strong {
  color: rgb(224, 109, 109);
}

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

.current-temperature {
  display: flex;
}
.current-temperature-icon {
  width: 88px;
  height: 88px;
}

.current-temperature-value {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
}
.current-temperature-unit {
  font-size: 28px;
  margin-top: 6px;
}

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

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

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: rgb(57, 57, 242);
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temperature {
  padding: 1px;
}

footer {
  border-top: 1px solid hsl(293, 27%, 81%);
  text-align: center;
  padding-top: 15px;
  color: rgba(39, 33, 66, 0.4);
}
