body {
  background-color: rgb(173, 208, 219);

  font-family: "Roboto", sans-serif;
}
a {
  color: #2196f3;
}
.body-content {
  background-color: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
main {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
}
.city-name {
  font-size: 38px;
  line-height: 48px;
  margin: 0;
}
.city-info strong {
  color: #f65282;
}

.city-info {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.city-time {
  font-weight: bold;
  font-size: 20px;
}
.city-icon {
  width: 88px;
  height: 88px;
}

.city-temperature {
  display: flex;
}

.city-temp-icon {
  font-size: 48px;
  margin-top: 4px;
}

.city-temp-value {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
  margin-left: 4px;
}

.city-temp-unit {
  font-size: 30px;
  margin-top: 12px;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}
.search-form-button {
  background-color: #2196f3;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-left: 5px;
  padding: 15px 20px;
  color: white;
}

.weather-container {
  display: flex;
  margin-top: 10 auto;
  justify-content: space-around;
  align-items: center;
}
.weather-forecast-day {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 10px;
}

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

.weather-forecast-temperature {
  text-align: center;
  color: #f65282;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.temp-1 {
  padding: 0 10px;
}

footer {
  border-bottom: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  font-size: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
