header{
    border-bottom: 1px solid #f9f7fe;
    padding:0 0 30px 0;
}
body{
    background-color: rgb(99, 87, 107);
    font-family: "Roboto", sans-serif;
}
a{
    color: rgb(38, 33, 38);
}
.weather-app-city{
    font-size: 40px;
    margin: 0;
    line-height: 48px;

}
.weather-app-data{
    display: flex;
    justify-content: space-between;
}
main{
    padding: 30px 0;
}
.weather-app-details{
    font-size: 18px;
    color: rgb(0,0,0,0.5);
    margin: 0;
    line-height: 40px;
    font-weight: 500;
}
.weather-app-details strong{
    color: rgb(108, 137, 241);
}
.weather-app-temperature-container{
    display: flex;

}
.weather-app-temperature{
    font-size: 70px;
    font-weight: Bold;
    line-height: 60px;
    margin-left:10px;
}
.weather-app-icon{
    width: 88px;
    height: 88px;

}
.weather-app-unit{
    margin-top: 3px;
    font-size: 28px;
    font-weight: bold;
}
.weather-app{
    background-color: rgb(235, 241, 251);
    max-width:fit-content;
    height: fit-content;
    margin: 45px auto;
    border-radius: 10px;
    padding: 70px;
    box-shadow: 0 30px 50px rgba(0,0,0,0.1);
}
.weather-forecast {
    display: flex;
    justify-content: space-around;
    margin-top: 30px; ;
}
.weather-forecast-date {
    text-align: center;
    color: rgb(156, 156, 156);
    font-size: 16px;
    line-height: 13px;
    margin-bottom:10px ;

}
.weather-forecast-icon{
    text-align: center;
    font-size: 30px;
    line-height: 30px;
}
.weather-forecast-temperatures{
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: rgb(138, 82, 94);
    display: flex;
    justify-content: center;
    
}
.weather-forecast-temperature{
    padding: 0 5px;
}
.search-form-input{
    background-color: #efeef0 ;
    border: none;
    border-radius: 6px;
    padding: 20px;
    font-size: 16px;
    width: 80%;
}

.search-form-btn{
   
    background: rgb(60, 115, 225);
    padding: 20px 20px;
    border: none;
    border-radius: 6px;
    color: white;
    margin-left: 5px;
    font-size: 16px;
}
footer{

    border-bottom: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 15px;
    color: rgb(0,0,0,0.5);
}
.picture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}