body{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    align-items: center;
    background-color: aliceblue;
    background-image: url("weather.png") ;
    
}
#cityInput{
    font-size: 1.5rem;
    padding: 1px;
    margin-top: 15px;
}
#weather{
    font-size: 1.5rem;
    padding: 1px;
    margin-top: 15px;
    background-color: hsl(110, 30%, 50%);

}
#weather:hover{
    background-color: hsl(150, 65%, 45%);
    
}
.card{
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    
    align-items: center;
    background:linear-gradient(180deg,hsl(196, 56%, 63%),hsl(307, 100%, 50%));
    margin-top: 15px;
    width: 350px;
    border: 1px solid black;
    box-shadow: 5px 5px 5px hsl(15, 0%, 50%);
    border-radius: 15px;
    max-height: 700px;
    

}
#cityName,#temp{
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 0;
}
#humidity{
    font-size: 2rem;
    margin-top: 0;
}
#disc{
    font-size: 2rem;
    margin-top: 0;
}
#weatherEmoji{
    font-size: 3.5rem;
    margin-top: 0;
}
#error{
    font-size: 1.5rem;
    margin-top: 0;
    
}
