body {
  background-image: url("https://t4.ftcdn.net/jpg/06/41/91/85/360_F_641918542_bL3O5qWqKmaVrxM12Qa1pp1owFvKKP3k.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Roboto", sans-serif;
}
header {
  border-bottom: 1px solid rgba(128, 128, 128, 0.288);
  padding: 0 0 30px 0;
}
a {
  color: #58518d;
  font-weight: bold;
}

.container {
  background-color: rgba(255, 255, 255, 0.767);
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  box-shadow: 0 20px 30px #363a3d;
  border-radius: 10px;
}
.search-form-input {
  background-color: white;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  padding: 15px 20px;
  color: black;
  width: 72%;
}
.search-form-button {
  background-color: #3686c5;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  margin-left: 8px;
  color: white;
}
main {
  padding: 30px 0;
}
.weather-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-app-data {
  font-size: 16px;
  color: rgb(128, 128, 128);
  line-height: 20px;
  font-weight: 500;
}
.weather-app-data strong {
  color: #e77b8a;
}
.weather-app-temperature {
  display: flex;
}
.weather-app-temperature-icon {
  font-size: 54px;
}
.weather-app-temperature-value {
  font-size: 88px;
  margin-left: 5px;
  font-weight: bold;
}
.weather-app-temperature-unit {
  font-size: 30px;
  margin-top: 15px;
}
.weather-app-forecast {
  display: flex;
  justify-content: space-around;
  margin: 50px 0 20px 0;
}
.weather-app-forecast-date {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.699);
  font-weight: 450;
  text-align: center;
}
.weather-app-forecast-icon {
  display: block;
  width: 80px;
  margin: 20px auto;
}

.weather-app-forecast-temperatures {
  display: flex;
}
.weather-app-forecast-temperature {
  padding: 0 5px;
  color: #c42439;
  font-size: 14px;
  text-align: center;
}
footer {
  border-top: 1px solid rgba(128, 128, 128, 0.288);
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.562);
}
