body{
    background-color: #cbd1fc;
    font-family: "Roboto", sans-serif;
}
.Weather-app {
    background-color: white;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0px 30px 50px rgba(65, 50, 100, 0,05);
    padding: 30px;
    border-radius: 16px;
}
header {
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 30px;
}
.search-form-input {
    background-color: #f1f1f1;
    border: none;
    border-radius: 6px;
    max-width: 80%;
    font-size: 16px;
    padding: 15px 20px;

}
.search-button-input {
    background-color: #2b76f8;
    color: white;
    border: none;
    margin-left: 5px;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}
.weather-app-city{
    margin: 0;
    font-size: 30px;
    line-height: 48px;

}
.temperature {

}

footer {
    border-top: 1px solid #e0e0e0;
    padding: 30px 0 0;
    text-align: center;
    font-size: 13px;
    color:  rgba(0, 0, 0, 0.6);

}
main {
    padding: 30px 0;
}

.current-temperature {
  font-size: 48px;
}

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

.current-city {
  font-size: 38px;
  font-weight: 900;
  margin: 0;
}
.current-details {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

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

.current-temperature-icon {
  position: relative;
  top: -8px;
  font-size: 48px;
  margin-right: 10px;
}

.current-temperature-value {
  font-size: 80px;
  font-weight: bold;
}

.current-temperature-unit {
  font-size: 28px;
  position: relative;
  top: -38px;
}

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

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

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

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

.weather-forecast-date {
  text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.weather-forecast-icon{
  width: 48px;
    height: 48px;
    display: block;
    margin: 0 auto;
    
}
.weather-forecast-temperatures {
    text-align: center;
    color: #f65282;
    margin: 0px;
    display: flex;
    justify-content: center;
}

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

.weather-forecast-day {
  flex: 1;
  text-align: center;
}