body{
    background-color: hsl(0, 0%, 90%);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1{
    background-color: white;
    padding: 10px;
    border: 4px solid hsl(0, 0%, 30%);
    border-radius: 15px;
    margin-top: 10px;
    margin-bottom: 0;
}
.weatherForm{
    margin: 10px;
}
.cityInput{
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    border: 2px solid hsl(0, 0%, 30%, 0.371);
    border-radius: 10px;
    margin: 10px;
    width: 250px;
}
button[type="submit"]{
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: hsla(47, 72%, 59%, 0.715);
    color: rgb(60, 60, 60);
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
button[type="submit"]:hover{
    background-color: hsla(47, 72%, 49%, 0.715);
}
button[type="submit"]:active{
    background-color: hsla(47, 72%, 39%, 0.715);
}
.card{
    background: linear-gradient(180deg, hsl(210, 100%, 73%), hsl(40, 100%, 75%));
    padding: 40px;
    box-shadow: 2px 2px 5px hsl(0, 0%, 0%, 0.5);
    border-radius: 10px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h2{
    margin-top: 0;
    margin-bottom: 20px;
}
p{
    margin: 5px 0;
}
.cityDisplay, .tempDisplay{
    font-size: 3.5rem;
    font-weight: bold;
    color:hsl(0, 0%, 0%, 0.75);
    margin-bottom: 25px;
}
.humidityDisplay{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.descDisplay{
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
}
.weatherEmoji{
    font-family: 'Segoe UI Emoji';
    margin: 0 0;
    font-size: 7.5rem;
}
.errorDisplay{
    font-size: 2.5rem;
    font-weight: bold;
    color:hsl(0, 0%, 0%, 0.75);
}