body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 95%);
    display: flex;
    margin: 0;
    align-items: center;
    flex-direction: column;
}

.weatherForm{
    margin: 20px;
}

.cityInput{
    font-size: 1.5rem;
    font-weight: bold;
    padding: 10px;
    border: 2px solid hsl(0, 0%, 20%, 0.3);
    border-radius: 10px;
    margin: 10px;
    width: 300px;
}

button[type="submit"]{
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.5rem;
    background-color: hsl(122, 39%, 50%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover{
    background-color: hsl(122, 39%, 40%);
}

.card{
    background: linear-gradient(180deg,hsl(210, 100%, 75%),hsl(40, 100%, 75%));
    padding: 50px;
    box-shadow: 2px 2px 5px hsla(0, 0%, 0%, 0.5);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

h1{
    margin-top: 0;
    margin-bottom: 25px;
}

p{
    font-size: 1.5rem;
    margin: 5px 0;
}

.cityDisplay, .temperatureDisplay{
    font-size: 3rem;
    font-size: bold;
    margin-bottom: 25px;
    color: hsla(0, 0%, 0%, 0.75);
}

.humidityDisplay{
    margin-bottom: 25px;
    font-weight: bold;
}

.descDisplay{
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
}

.emojiDisplay{
    margin: 0;
    font-size: 5rem;
}

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