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

a {
  color: #75a7e8;
}
.weather-app {
  background: white;
  max-width: 700px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 30px 50px #c4d5ed;
}

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

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

.search-form-button {
  background: #75a7e8;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  margin-left: 0;
  font-size: 16px;
  cursor: pointer;
}

.search-form-button:hover {
  background: #eef5ff;
  color: #609ae7;
  transition: 150ms ease-in-out;
}

main {
  padding: 30px 0;
}

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

.weather-app-city {
  margin: 0;
  font-size: 54px;
  line-height: 54px;
}

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

.weather-app-temperature-container {
  display: flex;
}

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

.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
  margin-left: 10px;
}
.weather-app-unit {
  margin-top: 10px;
  font-size: 28px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
}
.weather-forecast-day {
  border: 2px solid transparent;
  background: #f5f9ff;
  border-radius: 10px;
  padding: 12px;
  transition: border-color 200ms ease-in-out;
}
.weather-forecast-day:hover {
  border-color: #75a7e8;
  cursor: pointer;
}

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

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

.weather-forecast-temperatures {
  text-align: center;
  color: #e33e6f;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid #eef5ff;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
