body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  background-color: #a9e3f1;
  color: white;
  max-width: 700px;
  margin: 45px auto;
}

a {
  color: #002731;
}

footer {
  background-color: #5e919d;
  font-size: 13px;
  box-shadow: 3px 3px 10px 1px rgb(0 0 255 / 0.2);
  color: rgba(255, 255, 255, 0.8);
}

/* Containers */
.container {
  border-radius: 20px;
  max-width: 75%;
  margin: 0 auto;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 1px rgb(0 0 255 / 0.2);
}

.form-container {
  background-color: #5e919d;
  margin-bottom: 15px;
  padding: 15px 10px;
}

.main-container {
  background-color: #5e919d;
  margin-bottom: 15px;
}

.forecast-container {
  background-color: #5e919d;
  margin-bottom: 15px;
}

/* Form */
#search-bar {
  width: 75%;
  border: none;
  border-radius: 10px;
  padding: 10px;
}

#search-button {
  width: 20%;
  border: none;
  border-radius: 10px;
  padding: 10px;
  margin-left: 5px;
  background-color: white;
}

/* Grids */
.header-grid {
  display: grid;
  grid-template-columns: 70% 30%;
}

.header-column {
  align-content: center;
  min-height: 100px;
  height: auto;
}

.main-grid {
  display: grid;
  grid-template-columns: auto auto;
  padding: 0 20px;
  margin-bottom: 20px;
}

.current-weather {
  display: flex;
  justify-self: right;
}

.current-status {
  font-size: 18px;
  font-weight: 400;
  text-align: right;
  color: #073f4d;
}

.forecast-grid {
  display: grid;
  grid-template-columns: auto auto auto auto auto auto;
}

.forecast-column {
  align-content: center;
  background-color: #073f4d;
  color: white;
  border-radius: 10px;
  padding: 10px;
  margin: 2px;
}

/* 
.large-unit {
  font-size: 40px;
  margin-top: 15px;
  font-weight: 500;
}

.small-unit {
  font-size: 10px;
  vertical-align: 30%;
} 
*/

/* Main display */
#day-and-time {
  font-size: 18px;
  color: #073f4d;
}

#city {
  font-size: 50px;
  font-weight: 600;
  text-align: left;
}

#country {
  font-size: 20px;
  font-weight: 400;
  text-align: left;
  color: #073f4d;
}

#temperature {
  font-size: 50px;
  font-weight: 600;
  margin-top: auto;
  margin-bottom: auto;
}

.weather-icon {
  width: 75px;
}

#weather-icon {
  margin-top: auto;
  margin-bottom: auto;
}

/* Forecast */
.forecast-weather-icon {
  height: 50px;
  width: 50px;
}
