* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Poppins", sans-serif;
}

body {
    background-image: url(../images/bg-nuvens.png);
    background-size: cover;

    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;

    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    padding: 2rem;

    max-width: 800px;

    background-color: #4b9af570;
    border-radius: 15px;
}

main > h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);

    margin-bottom: 1rem;
}

main #search-form form {
    display: flex;
    gap: 0.7rem;
    width: 100%;
}

main #search-form input {
    flex: 1;
    height: 32px;
}

input {
    border: none;
    border-radius: 3px;
    padding: 1.2rem 1rem; 
    outline: none;
}

button {
    border: none;
    padding: 0 0.5rem;
    border-radius: 3px;
    background-color: #2185f7;
    color: #ffffff;
    cursor: pointer;
}

#weather-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}