body {
    font-family: Arial, Helvetica, sans-serif;
    background: hsl(0, 0%, 95%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;        /*align horizontally*/
}

.weatherForm {
    margin: 1rem;
}

.cityInput {
    padding: 0.5rem;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid #252525;
    border-radius: 0.5rem;
    margin: 0.5rem;
    width: 50%;
}

button[type=submit] {
    padding: 0.5rem;
    font-weight: bold;
    font-size: 2rem;
    background-color: darkseagreen;
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: rgba(143, 188, 143, 0.767);
}

.card {
    background: linear-gradient(135deg, lightblue, pink);
    padding: 3rem;
    box-shadow: 2px 2px 5px grey;
    min-width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-top: 0;
    margin-bottom: 2rem;
}

p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.cityDisplay, .tempDisplay {
    font-size: 3.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
    margin-bottom: 2rem;
}

.humidityDisplay {
    font-weight: bold;
    margin-bottom: 2rem;
}

.descDisplay {
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
}

.weatherEmoji {
    margin: 0;
    font-size: 7.5rem;
}

.errorDisplay {
    font-size: 2.5rem;
    font-weight: bold;
    color: hsla(0, 0%, 0%, 0.75);
}