body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-color: lightskyblue;
}

.search_container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.body_container {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid white;
    gap: 1.25rem;
}

#city {
    margin-top: 1.875rem;
}

#submit {
    background-color: green;
    color: white;
    border-style: none;
    border-radius: 1rem;
    height: 50%;
    align-self: flex-end;
}

#submit:hover {
    cursor: pointer;
}