body {
    background-color: #87CEFA;
    font-family: "Roboto", sans-serif;;
}
.weather-app {
    background: white;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
    border-bottom: 20px;
    padding: 30px
    
}
header {
    border-bottom: 1px solid hsl(188, 40%, 89%);
    padding: 0 0 30px 0;
}
.search-form-input {
    background-color: #d7e6ef;
    border: none;
    border-radius: 6px;
    width: 80%;
    font-size: 18px;
    padding: 15px 20px
    
}

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

footer {
    border-top: 1px solid hsl(188, 40%, 89%);
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 13px;
    color: rgb(0,0,0,0.6)
}
a {
    color: #87dbeb;
}

main {
    padding: 30px 0;
}
.weather-app-data {
    display: flex;
    justify-content: space-between;

}
.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: 800;

}
.weather-app-details strong {
    color: red;
}

.weather-app-temperature-container {
    display: flex;
    margin-right: 5px;
}
.weather-app-temperature {
    font-size: 90px;
    margin-left: 10px;
    font-weight: bold;
    line-height: 88px;
}
.weather-app-icon {
    width: 88px;
    height: 88px;
   
}
.weather-app-unit {
    margin-top: 16px;
    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 {
    font-size: 38px;
    text-align: center;
}
.weather-forecast-temperature {
    text-align: center;
    color:red;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    
}

