body {
  background-color: #dfdfdf;
  font-family: "Raleway", sans-serif;
}
a {
  color: #a6b1e1;
}
.full-page-container {
  margin: 30px auto;
  background-color: #f2f2f0;
  width: 500px;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.3);
  border-radius: 30px;
}
header {
  border-bottom: 1px solid #a6b1e1;
  padding: 0 0 30px 0;
}

.search-input {
  background-color: #dfdfdf;
  border: none;
  border-radius: 15px;
  width: 75%;
  padding: 20px;
}
.search-button {
  background-color: #424874;
  border: none;
  border-radius: 15px;
  padding: 15px 25px;
  width: 20%;
  color: #ffffff;
  margin-left: 5px;
}
main {
  padding: 10px 0px;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.main-weather-city {
  margin: 0;
  font-size: 48px;
  line-height: 40px;
  color: #424874;
}
.main-weather-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 20px;
}
.main-weather-details strong {
  color: #424874;
}
.main-weather-details-container {
  display: flex;
}
.main-weather-temp {
  font-size: 80px;
  margin-left: 10px;
  color: #424874;
}
.main-weather-emoji {
  width: 80px;
  height: 80px;
  margin-top: 12px;
}
.main-weather-unit {
  margin-top: 20px;
  font-size: 25px;
  color: #424874;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  border-bottom: 1px solid #a6b1e1;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: #a6b1e1;
  font-size: 16px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #424874;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temp {
  padding: 0 5px;
}
.quote {
  text-align: center;
  padding: 0 20px;
  color: #424874;
}
footer {
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
