*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
body{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #C1C3C5;

}
h1{
    font-size: 4rem;
    margin-bottom: 2rem;
}
input{
    display: block;
    width: 300px;
    font-size: 1.5rem;
    border-radius: 40px;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: none;
}
#weatherEl{
    font-size: 2rem;
    padding-top: .3rem;
    margin: 0 2rem;

}
#tempEl{
    font-size: 2rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    text-align: center;
}
#img{
    display: block;
    width: 7rem;
}
.weatherContainer{
    display: flex;
    align-items: center;
}

@media screen and (max-width:450px){
    h1{
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    #form{
        width: 95vw;
    }
    #city{
        display: block;
        width: 95vw;
        
    }
}