body {
  background: #e4eaff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.container {
  background: #ffffff;
  max-width: 600px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  margin: 50px auto;
  border-radius: 10px;
  padding: 30px;
}

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

/* Search bar section */
.search-form-input {
  padding: 15px 20px;
  width: 80%;
  background: #e4eaff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}

.search-form-button {
  background: #191970;
  color: #ffffff;
  border-radius: 5px;
  border: none;
  padding: 15px 30px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-left: 5px;
}

p {
  color: #a9a9a9;
}

p strong {
  color: #daa520;
}

/* Current location and conditions section ie. Location, Temp, Celsius */
.current-weather {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0px;
}

.location {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 38px;
  margin-bottom: 10px;
  color: #191970;
}

.forecast-details {
  font-size: 14px;
  margin-top: 0;
}

.forecast-today {
  display: flex;
}

#weather-icon {
  width: 100px;
  height: 100px;
  margin-top: 18px;
}

.current-temperature {
  font-family: "Cal Sans", sans-serif;
  font-weight: 400;
  font-size: 68px;
  color: #191970;
  margin-top: 20px;
  padding-right: 3px;
}

.celsius {
  font-size: 28px;
  font-family: "Cal Sans", sans-serif;
  color: #191970;
  margin-top: 32px;
}

/* 5 day weather forecast section */
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.weather-forecast-date {
  text-align: center;
  color: #a9a9a9;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 5px;
}

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

.weather-forecast-temperatures {
  display: flex;
  text-align: center;
  color: #191970;
  justify-content: center;
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 14px;
}

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

footer {
  font-size: 12px;
  color: #191970;
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid #e4eaff;
}

a {
  color: #daa520;
  text-decoration: none;
}
