* {
    background-color: bisque;
    padding: 0;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    width: 100%;
}

header {
    margin: 1rem;
    text-align: center;
}

main {
    display: flex;
    margin: 1rem;
    gap: 1rem;
}

#container_left {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 25%;
    text-align: center;
}

#search_bar {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#search_bar input {
    width: 100%;
}

#search_bar button {
    width: 100%;
}

#search_history {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

#five_day_forecast {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

#weather_container {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#five_day_forecast {
    display: flex;
    width: 100%;
}

#fiveday {
    flex: 1;
    width: 100px;
}

.widget, .widget > * {
    background-color: rgb(251, 204, 146);
}

.widget {
    padding: 1rem;
    border-radius: 25px;
}


@media screen and (max-width: 750px) {
    #fiveday {
        width: 100%;
    }
}