body {
  background-color: #817fa0;
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: normal;
}

.weather-section {
  background-color: #9faac3;
  max-width: 500px;
  margin: 30px auto;
  padding: 30px;
  box-shadow: 15px 15px 15px #e3e8e4;
  border-radius: 15px;
}

#city-input {
  padding: 15px;
  border-radius: 15px;
}
.current-weather-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.current-temp {
  font-size: 40px;
  display: flex;
  align-items: center;
  gap: 5px;
}
#icon {
  display: flex;
  align-items: center;
  width: 80px;
  height: 80px;
}
.weather-app-icon {
  width: 100%;
  height: auto;
}
.grid-emoji {
  text-align: center;
}

.day-forecast {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.day-temps {
  text-align: center;
  color: #667865;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.day-temp {
  padding: 0 10px;
}
.grid-emoji {
  width: 70px;
  height: 70px;
  display: block;
  margin: 0 auto;
}
#forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

button {
  border-radius: 10px;
  padding: 8px 10px 8px 10px;
}
