* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}


header {
    background-color: green;
    text-align: center;
}
aside {
    background-color: rgb(57, 57, 97);
    flex-grow: 6;
    margin: 20px 0 0 5px;
    flex-shrink: 4;
    flex-basis: 3;
}

main {
    display: flex;
    /* background-color: yellow; */
    flex-direction: row;
}

.menu_h1 {
    padding: 10px;
    color: white;
    font-weight: 200
}

.cards_container {
    display: flex;
    flex-direction: column;
    /* justify-content: stretch; */
    /* align-content: center; */
    flex-grow: 11;
    /* min-height: 100vh; */
    margin:10px 20px 0 5px ;
    flex-shrink: 1;
    flex-basis: 7;
}

.card {
    background-color: aqua;
    min-height: 100px;
    margin: 10px 0;
    display: flex;
    /* align-content: stretch; */
    border: 2px solid black;
}

.card__content {
    background-color: cadetblue;
    flex-grow: 1;
}

.search_output {
    padding: 50px;
}

.card__icon {
    height: 100%;
    width: 100px;
    background-color: blue;
}

.search_h2 {
    text-align: center;
    padding: 10px 0;
}

.search_output {
    width: 100%;
    height: auto;
    border-top: 1px solid white;
}

.card__content h3 {
    margin: 5px 0;
}



@media (max-width: 600px) {

    aside {
        position: fixed;
        bottom: 0;
        width: 100vw;
        margin: 0;
    }

    .search_output {
        position:absolute;
    }

    .card {
        flex-direction: column;
        min-width: 100%;
       
    }
    .cards_container {
        margin-bottom: 50px;
    }

    .card__icon {
        width: 100%;
        min-height: 150px;
    }

    .card__content {
        text-align: center;
        padding: 30px 0;
    }

}