body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #3baea0;
}

main {
  height: 400px;
}

.container {
  display: block;
  margin: 0 auto;
  background-color: #aaffda;
  padding: 30px;
  border-radius: 15px;
  width: 750px;

  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

form {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.enter-city-form {
  background: white;
  padding: 10px;
  width: 100%;
  height: 50px;
  border-radius: 20px;
  border-color: #1f6f78;
  text-align: left;
  font-size: 20px;
  border: 1px;
}

.enter-city-button {
  background-color: #118a7e;
  color: white;
  border-color: #1f6f78;
  border-radius: 15px;
  width: 100px;
  height: 50px;
  font-size: 15px;
  font-weight: 800;
  border: 1px;
  margin-left: 10px;
}

.current-city {
  font-size: 60px;
  margin-bottom: 20px;
}

.current-weather {
  margin-top: 50px;
  margin-bottom: 50px;
  padding-left: 25px;
}

.weather-now strong {
  color: #1f6f78;
}

.current-temp {
  display: flex;
  justify-content: end;
  position: relative;
  top: -180px;
  padding-right: 25px;
}

.weather-icon {
  position: relative;
  top: 0%;
  font-size: 70px;
}

.temp {
  font-size: 90px;
  font-weight: 600;
}

.degree {
  font-size: 45px;
  position: relative;
  top: 10px;
}

.future-weather {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  top: -125px;
  font-weight: 600;
}

footer {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}

.link {
  color: #1f6f78;
}

.weather-forecast {
  position: relative;
  top: -100px;
  display: flex;
  justify-content: space-evenly;
}

.weather-forecast-day {
  margin-bottom: 50px;
}

.weather-forecast-date {
  text-align: center;
  color: #1f6f78;
  line-height: 20px;
  margin-bottom: 15px;
}

.weather-forecast-icon {
  text-align: center;
  width: 35px;
  margin-bottom: 15px;
}

.weather-forecast-temp {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.weather-forecast-temp-high {
  color: #1f6f78;
  padding: 0 10px;
}

.weather-forecast-temp-low {
  color: #3baea0;
}
