body {
  background-color: #abd5c6;
  margin-top: 20px;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

.container {
  background-color: #e3eef4;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  box-shadow: 4px 6px 5px #1552634e;
  width: fit-content;
  display: block;
  margin: 0 auto;
}

input {
  border-radius: 10px;
  border: none;
  padding: 10px;
  margin: 0 5px;
}

.search-form-city-input {
  background-color: white;
  width: 65%;
  box-shadow: 1px 1px 1px #1552634e;
}

.search-form-submit {
  background-color: #f0b917;
  color: white;
  width: 20%;
  box-shadow: 1px 1px 1px #1552634e;
}

.current-weather-data {
  background-color: #155263;
  border-radius: 10px;
  padding: 10px 0 10px 0;
  margin: 20px 38px;
  color: white;
}

h1 {
  margin: 10px 0 0 0;
  color: white;
  padding: 10px;
  font-size: 50px;
}

#day,
#date,
#time {
  padding: 0 20px;
}

p {
  margin-top: 0;
  font-size: 16px;
}

.current-temperature {
  display: flex;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid white;
  margin: 0 120px 10px 120px;
  color: white;
  padding: 5px;
}

.current-degrees {
  font-size: 60px;
  font-weight: bold;
}

.degrees-symbol-celcius {
  font-size: 40px;
  font-weight: 400;
  padding: 0 15px 0 5px;
  position: relative;
  top: 6px;
  right: 5px;
}

#current-weather-icon {
  position: relative;
  bottom: 15px;
  height: 70px;
  width: 70px;
}

.current-weather-info {
  font-size: 11px;
  color: #f0b917;
}

h2 {
  margin: 0 0 10px 0;
  padding: 10px;
  border-bottom: 1px solid #155263;
}

.weather-forecast {
  border-radius: 10px;
  padding: 10px 0 10px 0;
  margin: 20px;
  color: black;
  display: flex;
  justify-content: space-around;
  transform: scale(0.95);
}

.weather-forecast-day {
  background-color: white;
  border-radius: 10px;
  padding: 10px 10px;
  margin: 10px;
  color: #155263;
  font-size: 14px;
  box-shadow: 1px 1px 1px #1552634e;
  font-weight: bold;
}

.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  font-size: 12px;
}

.weather-forecast-temp-high {
  color: #f0b917;
}

.weather-forecast-temp-low {
  font-weight: 300;
  color: #155263;
  margin-left: 8px;
}

.weather-forecast-icon {
  width: 60%;
  display: block;
  margin: 0 auto;
}

footer {
  color: black;
  font-size: 12px;
  margin-bottom: 10px;
}
