* {
    padding: 0;
    margin: 0;
}

body {
    display: grid;
    place-items: center;
    height: 100vh;
}

#weather-window {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

#weather-window > * {
    margin: .5rem 0;
}

button {
    border: 1px solid black;
    padding: .5em;
    align-self: center;
}

button:hover {
    cursor: pointer;
    background: white;
}

#autocomplete  {
    max-height: 10em;
    width: 20em;
    overflow-x: hidden;
    overflow-y: scroll;
}

.option {
    border: 1px solid black;
    padding: .5em;
}

.option:hover {
    background: lightgray;
    cursor: pointer;
}

#juntos {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 1em;
}

#myInput {
    margin-left: 1em;
}