body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: hsl(0, 0%, 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
}

.weatherForm{
    margin: 25px;
}

.cityInput{
    padding: 15px;
    font-size: 2rem;
    width: 350px;
    border-radius: 10px;
    border:2px solid hsla(0, 0%, 20%, 0.655);
    margin: 15px;
    font-weight: bolder;
    text-decoration: none;
}

button[type="submit"]{
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 7px;
    background-color: hsl(120, 55%, 53%);
    color: white;
    cursor: pointer;
    border:2px solid  hsl(120, 55%, 45%);
}

button[type="submit"]:hover{
    background-color: hsl(120, 55%, 45%);
}

.card{
    background: linear-gradient(180deg,hsl(210, 100%, 75%),hsl(40, 100%, 75%));
    padding: 40px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.496);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}


p{
    font-size: 1.25rem;
    margin: 10px 0;
}

.cityDisplay , .tempDisplay{
    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.748);
    margin-bottom: 20px;
}

.humidityDisplay{
    font-weight: bold;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.797);
}

.descDisplay{
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
    color: rgba(0, 0, 0, 0.797);
    margin-bottom: 5px;
}

.weatherEmoji{
    font-size: 6rem;
    margin-top: 0;
}

.errorDisplay{
    font-size: 2.5rem;
    font-weight: bold;
}
