body{
    font-family: Arial;
    background-color: hsl(0, 0%, 93%);
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.climaFormulario{
    margin: 20px;
}
.cidadeInput{
    padding: 10px;
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid hsla(0, 0%, 0%, 0.3);
    border-radius: 10px;
    margin: 10px;
    width: 270px;
}
button[type = "submit"]{
    padding: 10px 20px;
    font-weight: bold;
    font-size: 2rem;
    background-color: hsl(120, 64%, 61%);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button[type = "submit"]:hover{
    background-color: hsl(120, 64%, 51%);
}
.card{
    background: linear-gradient(180deg, rgb(62, 130, 226) , rgb(235, 159, 66));
    padding: 50px;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
h1{
    margin-top: 0;
    margin-bottom: 25px;
}
p{
    font-size: 1.5rem;
    margin: 5px 0;
}
.cidadeDisplay, .temperaturaDisplay{
    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 25px;
}
.humidadeDisplay{
    font-weight: bold;
    margin-bottom: 25px;
}
.detalhesDisplay{
    font-style: italic;
    font-weight: bold;
    font-size: 2rem;
}
.emojiDoTempo{
    margin: 0;
    font-size: 7.5rem;
}
.errorDisplay{
    font-size: 3.5rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.75);
}