body {
  background-color: rgba(106, 176, 237, 0.176);
  font-family: "Montserrat", "Source Code Pro", serif;
}
.weatherApp {
  max-width: 600px;
  background-color: white;
  border-radius: 20px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(43, 97, 145, 0.153);
}
.headerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(36, 35, 36, 0.122);
}
.headerGrid div {
  text-align: center;
}
h1 div {
  font-size: medium;
  color: rgba(36, 35, 36, 0.622);
}

.searchBar {
  max-width: fit-content;
  padding: 10px;
  background-color: rgba(106, 176, 237, 0.176);
  border: none;
  border-radius: 7px;
}
.searchButton {
  padding: 10px;
  background-color: rgb(65, 149, 223);
  border: none;
  border-radius: 7px;
}
.searchButton:hover {
  cursor: pointer;
}
.weatherIcon {
  font-size: 40px;
}
.currentDayData {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid rgba(36, 35, 36, 0.122);
}
.currentDayData div {
  color: rgba(36, 35, 36, 0.622);
  text-align: center;
  margin: 1px;
  padding: 10px;
  border-radius: 4px;
  background-color: rgba(106, 176, 237, 0.176);
}
.currentDayData div span {
  color: rgb(65, 149, 223);
  font-weight: bold;
}
.fiveDayForecast {
  display: flex;
  justify-content: space-around;
}
.forecastDate {
  text-align: center;
  color: rgba(36, 35, 36, 0.622);
  padding-top: 10px;
  font-size: 16px;
}
.forecastDayIcon {
  text-align: center;
  font-size: 25px;
  padding-top: 6px;
}
.forecastTemperatures {
  display: flex;
  justify-content: center;
}
.forecastTemperature {
  color: rgb(65, 149, 223);
  margin: 6px;
  padding-bottom: 10px;
}
footer {
  padding-top: 15px;
  border-top: 1px solid rgba(36, 35, 36, 0.122);
  font-size: 14px;
  text-align: center;
  color: rgba(36, 35, 36, 0.622);
}
footer a {
  color: rgb(65, 149, 223);
  text-decoration: none;
}
