body{
   
    background-color: #f0f0f0;
    font-family: "Almendra", serif;
  font-weight: 400;
  font-style: normal;
   

}
.container{
    color: #fff;
border-radius: 6px;
   background-image: url(stormy.jpg);
   background-repeat: no-repeat;
   background-size: cover; 
       padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 30px auto;
    width: 50%;
}

#search-input{
    background-color: #f0f0f0;
    font-family: cursive;
    color:#bbb4b4; 
   
    padding: 20px;
    margin: 20px 10px 20px 40px;
    border:none;
    border-radius: 30px;
    font-size: 15px;

   
}
#search-button{
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    border: none;
    cursor: pointer;
    margin: 20px 10px 20px 0;
    border:none;
    border-radius: 30px;
    font-size: 15px;
}
#search-button:hover{
    background-color: #0056b3;
}
#search-form{
    display: flex;
    justify-content: center;
    margin-top: 10px;
 
}
#date-time{
    font-size: 14px;
    margin-bottom: 20px;
    color: #747070;
}
.weather-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  font-size: 50px;
}
#icon{
    display: inline;
font-size: 50px;
}
#city-value{
    display: flex;
    justify-content: space-between ;
}

#description{
    font-size: 20px;
    margin-top: 10px;
    color:  #4b4848;
    
}
#humidity{
    font-size: 20px;
    margin-top: 10px;
    color: #fc0909;
}
#wind-speed{
    font-size: 20px;
    margin-top: 10px;
    color: #fc0909;
}
.weather-forecast{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    width: 100%;

}

.forecast-day{
    text-align: center;
    font-size: 20px;
    color: #4b4848;
}
.forecast-temperatures{
    text-align: center;
    display: flex;
    font-size: 20px;
    color: #d40606;
}
.forecast-temperature{
    margin: 0 10px;
    
    
}
.forecast-icon{
    display: block;
   width: 50px;
    height: 50px;
    margin: 0 auto;
    
}
footer{
    font-size: smaller;
    color: #bbb4b4;
}