body {
  font-family: "Oswald", sans-serif;
  background: #f9f7fe;
  font-size: 16px;
}
header {
  padding-bottom: 30px;
}

h1 {
  color: #272142;
  font-size: 42px;
}
strong {
  color: #f65282;
}
footer {
  color: #adabb7;
  border-top: 1px solid #f9f7fe;
  font-size: 14px;
  text-align: center;
}
a {
  color: #9e7cf4;
}

.oswald-uniquifier {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}
.container {
  display: flex;
  flex-direction: column;
  border: none;
  width: 65%;
  max-width: 600px;
  margin: 0 auto;
  margin-top: 75px;
  padding: 20px;
  background: #ffffff;
  border-radius: 7px;
}
.city-form {
  position: relative;
  top: 15px;
  left: 40px;
}
.city-search {
  width: 65%;
  padding: 15px;
  border-radius: 5px;
  border: none;
  background: #f9f7fe;
  font-size: 14px;
}
.search-bar {
  width: 15%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background: #885df1;
  color: #ffffff;
  font-size: 14px;
  margin-left: 10px;
}
.temperature-container {
  display: flex;
}
.weather-icon {
  width: 160px;
  height: 160px;
}
.current-temperature {
  font-size: 80px;
  color: #272142;
  padding-top: 20px;
  margin-left: 10px;
  line-height: 88px;
  font-weight: bold;
}
.weather-app-unit {
  margin-top: 22px;
  font-size: 28px;
}
.current-weather {
  display: flex;
  justify-content: space-between;
}
.weather-stats {
  color: #adabb7;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: #adabb7;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 100px;
  height: 100px;
  display: flex;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  display: flex;
  justify-content: center;
  display: flex;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
@media (max-width: 500px) {
  .container {
    width: 90%;
    margin-top: 30px;
  }

  .city-form {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
  }

  .city-search {
    width: 100%;
    margin-left: 0;
  }
  .search-bar {
    width: 40%;
    margin-left: 0;
  }

  .current-weather {
    flex-direction: column;
    gap: 10px;
  }

  .temperature-container {
    justify-content: center;
    display: flex;
    max-width: fit-content;
  }

  .current-temperature {
    font-size: 64px;
    line-height: 72px;
    text-align: center;
  }

  .weather-app-unit {
    font-size: 22px;
    text-align: center;
  }

  .weather-icon {
    width: 120px;
    height: 120px;
  }
  .weather-forecast {
    margin-left: 0;
    display: flex;
    max-width: fit-content;
  }
  .weather-forecast-date {
    font-size: 12px;
    line-height: 16px;
  }
  .weather-forecast-temperatures {
    font-size: 10px;
  }
  .weather-forecast-icon {
    width: 40px;
    height: 40px;
    display: flex;
    margin: 0 auto;
  }
}
