*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100%;
    background-image: url("images/back3.jfif");
    background-position: 0%;
    background-size: auto;
    background-repeat: no-repeat;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    width: 500px;
    margin: 0 auto;
    text-align: center;  
}
.container h1{
    padding: 15px 0px;
}
.container input[type="text"]{
    height: 30px;
    width: 300px;
    border: 0;
    outline: none;
    margin: 0 50px;
    padding-left: 10px;
    font-size: 16px;
    text-transform: capitalize;
    box-sizing: border-box;
    
}
.btn{
    padding: 10px 30px;
    margin: 10px 0px;
    border: none;
    outline: none;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn:hover{
    background: #fff;
    color: #000;
}
.showData{
    margin: 80px 0px;
    line-height: 1.6;
}
.showData ul{
    list-style-type: none;
}
.showData .city{
    font-size: 5rem;
}
.showData .temp{
    font-size: 4rem;
    font-weight: bold;

}
.showData .desc{
    font-size: 2rem;
    text-transform: capitalize;
}


















