*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.page{
    background-color: #b3b3b3;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Raleway", sans-serif;
}
.conatiner{
    min-width: 30%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    background-color: #0428b659;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0px 00px 7px 0px darkblue;;
    padding: 10px;
    margin : 0 15px ;
}
@media (max-width: 768px) {
    .conatiner{
        min-width: 90%;
    }
    
}
h3 , p , label {
    color: #fff;
    margin: 8px 0;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.search{
    width: 35%;
    text-align: center;
    height: 25px;
    border-radius: 4px;
    margin-top: 14px;
    border-color: transparent;
    cursor: pointer;
    background-color: #000000d9;
    color: white;

}
.city{
    width: 80%;
    height: 36PX;
    border-radius: 6px;
    outline: none;
    border-color: transparent
}
#Weahter-icon{
    display: none;
    width: 100px;
    height: 100px;
}
#temp-div p {
    font-size: 60px;
}
#weather-info{
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#hour-weater{
    display: flex;
    margin-top: 17px;
    justify-content: space-between;
    white-space: nowrap;
    overflow-x: auto;
    flex-wrap: wrap;
}
.item{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    color: white;
    margin-right: 10px;
    flex:  0 0 auto;
}
