body {
  font-family: "Alan Sans", sans-serif;
  background-color: #f5f4fa;
}

header {
  padding: 0 0 20px 0;
}

main {
  padding: 25px 0;
}

footer {
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

a {
  color: #ef94cf;
}

.container {
  background-color: white;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
}
.search-bar {
}
.search-bar-input {
  background-color: #f5f4fa;
  border: none;
  border-radius: 8px;
  width: 80%;
  padding: 15px 18px;
  font-size: 15px;
}
.search-bar-button {
  background-color: #ef94cf;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  color: #ffff;
  margin-left: 5px;
  font-size: 15px;
}
.current-weather {
  display: flex;
  justify-content: space-between;
}

.city-weather {
  margin: 0;
  font-size: 35px;
  line-height: 48px;
}

.city-weather-details {
  font-size: 15px;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.5);
}

.city-weather-details strong {
  color: #ef94cf;
}
.city-weather-container {
  display: flex;
}

.city-weather-emoji {
  width: 100px;
  height: 100px;
}
.city-weather-number {
  font-size: 85px;
  line-height: 100px;
}
.city-weather-degrees {
  margin-top: 12px;
  font-size: 25px;
  margin-right: 5px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 28px;
}
.forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.5);
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 10px;
}

.forecast-emoji {
  width: 77px;
  height: 77px;
  display: block;
  margin: 0 auto;
}
.forecast-degrees {
  text-align: center;
  color: #ef94cf;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

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