body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

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

a {
  color: #885df1;
}

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

.search-form-input {
  background-color: #f9f7fe;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 20px;
}

.search-form-btn {
  background-color: #885df1;
  color: white;
  padding: 15px 20px;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer;
}

main {
  padding: 30px 0;
}

.weather-data {
  display: flex;
  justify-content: space-between;
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

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

.weather-details {
  color: rgba(39, 33, 61, 0.4);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.weather-details strong {
  color: #f65282;
}

.weather-wrapper {
  display: flex;
}

/* If this code is useless, erase it */
.weather-icon {
  font-size: 44px;
  margin-top: 22px;
}

.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
}

.weather-temperature-value {
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
}

/* Weather app */
.weather-unit {
  margin-top: 16px;
  font-size: 28px;
}


.weather-forecast-day {
  text-align: center;
  color: #212529;
  font-size: 14px;
  margin-bottom: 10px;
} 

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

.weather-forecast-date {
  text-align: center;
  font-size: 14px;
  color: #212529;
  margin-bottom: 10px;
}

.weather-forecast-unit {
  text-align: center;
  font-size: 14px;
  color: #212529;
  margin-bottom: 10px;
}

.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

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

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}


/* Footer */
footer {
  border-top: #f9f7fe 1px solid;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
