
body{
    font-family:Arial, sans-serif;
    background-color: hsla(0, 0%, 100%, 0.301);
    margin: 0;
    display: flex;
    flex-direction:column;
    align-items: center;

}
.weatherform{
    margin: 20px;

}
.cityinput{
    padding: 10px;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid hsla(0, 0%, 0%, 0.3);
    border-radius: 10px;
    margin: 10px;
    width: 300px;
}
button[type="submit"] {
    padding: 10px 20px;
    font-weight: bold;
    font-size: 2rem;
    border: none;
    border-radius: 10px;
    background-color: lightblue;
    cursor: pointer;
}
button[type="submit"]:hover{
     background-color: hsl(195, 53%, 69%);
}
.card{
    background: linear-gradient(180deg,hsl(210, 100%, 75%),hsl(40, 100%, 75%));
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.5);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
h1{
    font-size: 3.5rem;
    margin-top: 0;
    margin-bottom: 25px;

}
p{
    font-size: 1.5rem;
    margin :5px 0;
}
.citydisplay,.tempdisplay{

    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}
.humiditydisplay{
    font-weight: bold;
    margin-bottom: 25px;
}
.descdisplay{
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;

}
.WeatherEmoji {
  font-size: 8rem;   /* bigger emoji size */
  text-align: center;
  margin: 10px 0;
}

.errordisplay{
    font-size: 2.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
    
}

