*{
    margin: 0;
    padding: 0;
}
body{
    /* background-color: purple; */
    background-image: url("https://plus.unsplash.com/premium_photo-1673603988651-99f79e4ae7d3?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MXx8d2VhdGhlciUyMGFwcHxlbnwwfHwwfHx8MA%3D%3D");
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-size: cover;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
}
.weather-container{
    background-color: rgb(255,255,255,0.5);
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 3px 5px 9px -2px;
    padding: 20px;
    text-align: center;
}
h2,label ,p {
    font-family: sans-serif;
    font-size: 25px;
    color: #fff;
    margin:10px 0;
}
.enter-city{
    height: 45px;
    width: 390px;
    border-radius: 10px;
    outline: none;
    border: none;
}
.enter-city::placeholder{
    padding-left: 10px;
    color:black;
    height:40px;
}
.btn{
    padding: 10px;
    border-radius: 10px;
    font-size: 15px;
    width:fit-content;
    margin-top: 10px;
    cursor: pointer;
    border:none;
}
.temperature p{
    font-size: 60px;
    margin-top: -30px;
}
.weather-info{
    font-size: 20px;
}
.weather-icon{
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    margin-bottom: 0;
    display: none;
}
.hourly-forecast{
    margin-top: 50px;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
}
.hourly-item{
    flex: 0 0 auto;
    width: 89px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
    color: white;
}
.hourly-item img{
    width: 35px;
    height: 30px;
    margin-bottom: 5px;
}
#hourly-heading{
    color: #fff;
    margin-top: 10px;
}
