body {
  background-color: rgba(0, 106, 255, 0.1);
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

.jonathan {
  background: white;
  max-width: 600px;
  display: block;
  margin: 5% auto;
  padding: 30px;
  border-radius: 4px;
}

.location-input {
  background-color: rgba(0, 106, 255, 0.1);
  width: 73%;
  padding: 15px 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
}

.submit-button {
  background-color: rgba(0, 106, 255, 0.95);
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  border-radius: 4px;
  margin-left: 6px;
  color: white;
}

header {
  border-bottom: 1px solid rgba(0, 106, 255, 0.1);
  padding: 0 0 30px 0;
}

main {
  padding: 30px 0;
}

.weather-details {
  display: flex;
  justify-content: space-between;
}

.city-name {
  font-size: 40px;
  margin: 0;
}

.city-details {
  color: rgba(0, 0, 0, 0.4);
  margin: 30px 0 0 0;
}

.details-strong {
  color: rgba(0, 106, 255, 0.95);
  font-weight: bold;
}

.temperature {
  display: flex;
  margin: auto 0;
}

.weather-icon {
  display: block;
  margin: auto 0;
}

.weather-icon {
  font-size: 36px;
}

.location-temperature {
  font-size: 70px;
  font-weight: bold;
  margin: auto 0 auto 12px;
}

.temperature-metric {
  display: block;
  margin: 10px 0 0 5px;
}

.weather-days-display {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
}

.day-of-week {
  text-align: center;
}

.day-icon {
  text-align: center;
  padding: 10px 3px;
}

.day-temperature {
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
}

.high-temp {
  padding: 0 5px;
  font-weight: bold;
  color: rgba(0, 106, 255, 0.95);
}

.low-temp {
  padding: 0 5px;
  color: rgba(0, 106, 255, 0.65);
}

footer {
  border-top: 1px solid rgba(0, 106, 255, 0.1);
  padding: 30px 0 0 0;
  font-size: 13px;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
