body {
  background-color: #eef2fc;
  font-family: "Raleway", sans-serif;
}

a {
  color: #1e5ba5;
}

.weather-app {
  background-color: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  box-sizing: border-box;
}

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

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

.search-form-button {
  background-color: #0e2d54;
  color: white;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  width: 20%;
}

.weather-app-city {
  text-align: center;
  color: #0e2d54;
  margin: 10px auto;
}

.weather-app-details {
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  margin: 0 auto;
}

.weather-app-icon {
  display: block;
  width: 170px;
  margin: 0 auto;
}

.weather-app-temperature-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-left: -20px;
  color: #0e2d54;
}

.weather-app-humidity,
.weather-app-wind,
.weather-app-conditions {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 15px 0;
}

.weather-app-temperature-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.weather-app-temperature {
  font-weight: bold;
  font-size: 50px;
  margin: 4px;
  line-height: 4px;
}

.weather-app-unit {
  font-size: 24px;
  line-height: 1px;
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  color: #0e2d54;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

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

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

footer {
  text-align: center;
  margin: 15px auto;
  padding: 25px 0 0 0;
  border-top: 1px solid #eef2fc;
  font-size: 13px;
}
