
body {
    background: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/174/489/original/pexels-codioful-7135012.jpg?1759596131");
}
.weather-app {
    background: white;
    max-width: 600px;
    margin: 45px auto;
    padding: 30px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.8);
    border-radius: 16px;
    font-family: zelando sans, sans-serif;
}

header {
    border-bottom:  #ced8e5;
    padding: 0 0 30px 0;
}


a {
    color: rgb(3, 48, 97);
}
.search-form-input {
    background-color: #E7E5FA;
    border: none;
    border-width: 6px;
    width: 80%;
    padding: 20px;
    font-size:16px;
    border-radius: 6px;
}

.search-form-button {
    background: #352e4e;
    padding: 20px;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 20px;
    margin-left: 5px;
}



main {
    padding: 30px 0;
}

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


}

.weather-app-details {
    font-size: 16px;
    line-height: 24px;
    color: rgba(39, 33, 66, 0.4);
    font-weight: 500;
    margin-left: 5px;
    padding: 10px 0 20px 0;

}

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

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

.weather-app-temperature-container {
  display: flex;
  justify-content: space-between;
 


}


.weather-app-icon {
 font-size: 44px;
    width: 88px;
  height: 88px;
  line-height: 50px;
  margin-top: 8px;
  margin-left: 120px;
  margin-right: 0px;
  
  
 
 



}

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


}


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


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

.weather-forecast {
    display: flex;
}

.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 {
    font-size: 38px;
    text-align: center;
}

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

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

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