@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin:0px;
    padding:0px;
    box-sizing: border-box;
    font-family: Poppins;
}

body{
    background-image:url('https://images.unsplash.com/photo-1617642171314-276bb7641536?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80');
    background-size: 100%;
    background-repeat: no-repeat;

}

header{
    background-color: rgb(17, 17, 51, 0.2);
    width:100%;
    height:9vh;
    display:block;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
}

h3{
    color:white;
    font-size: 30px;
    font-weight: 700;
}

#searchBar{
    margin:50px 10px;
    /* text-align: center; */
    padding-left: 20px;
    height:50px;
    width: 22rem;
    border-radius: 30px;
}

#searchBar:focus{
    outline:none;
}

#container{
    height:88vh;
    width:400px;
    margin: 0px auto;
}

.display{
    margin:0px 10px;
    height:300px;
    width:350px;
    color:white;
    text-align: center;
    padding:20px 20px;
    border-radius: 30px;
}

#cityname{
    font-size: 40px;
    font-weight: 500;
    color:white;
}

#date-time{
    font-size: 17px;
    font-weight: 500;
    color:wh;
}

#temp{
    font-size: 80px;
    font-weight: 600;
    color: rgb(251, 177, 39);
}

#min,#max{
    font-size: 25px;
    color:#ffb703;
}


#desc{
    padding:10px;
    font-size: 50px;
}
