body {
  background-color: #f7f7f7;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100px;
  font-style: normal;
  font-variant-emoji: only-contour;
}

header {
  border-bottom: 1px solid #f7f7f7;
  padding: 0 0 30px 0;
  text-align: center;
}

main {
  padding: 30px 0;
}

a {
  color: #f7f7f7;
}

.meteo-app-rain {
  margin: 45px auto;
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  background: linear-gradient(
    180.3deg,
    rgb(221, 221, 221) 20.5%,
    rgb(110, 136, 161) 70.2%
  );
}

.meteo-app-clouds {
  margin: 45px auto;
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  background: radial-gradient(
    circle at 0.7% 1%,
    rgb(215, 248, 247) 0%,
    rgb(102, 188, 239) 100.2%
  );
}

.meteo-app-sun {
  margin: 45px auto;
  max-width: 600px;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  background: radial-gradient(
    circle at 10% 20%,
    rgb(253, 239, 132) 0%,
    rgb(247, 198, 169) 54.2%,
    rgb(21, 186, 196) 100.3%
  );
}

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

.search-form-button {
  background: rgb(110, 136, 161);
  padding: 15px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
}

.meteo-app-data {
  display: flex;
  justify-content: space-between;
}

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

.meteo-app-date {
  font-size: 16px;
  line-height: 35px;
}

.meteo-app-temperature-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meteo-app-emoji-description {
  display: flex;
  align-items: center;
}

.meteo-app-emoji {
  width: 55px;
}

#emoji img {
  width: 48px;
  vertical-align: middle;
}

.meteo-app-description {
  font-size: 14px;
}

.meteo-app-temperature {
  display: flex;
  margin-top: 0px;
}

.meteo-app-temperature-value {
  font-size: 88px;
  font-weight: bold;
  padding: 0 10px;
}
.meteo-app-temperature-unit {
  font-size: 20px;
  margin-top: 20px;
}

.meteo-app-details {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.meteo-app-humidity {
  margin: 0;
}

.meteo-app-wind {
  margin: 0;
}

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

.meteo-forecast-date {
  text-align: center;
  color: #f7f7f7;
  line-height: 20px;
  margin-bottom: 5px;
}

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

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

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

footer {
  border-top: 1px solid #f7f7f7;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
}
