/* Note to make this width change different view points*/

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.container h3 {
    color: black;
    /* width: auto;
    height: auto; */
    text-align: center;
}

.skies {
    background-color: #ffe4e1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.skies .img {
    order: 1;
}

.skies .title {
    order: 2;
}

.skies .text {
    order: 3;
}

.plants_flowers {
    background-color: #e18e96;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.plants_flowers .img {
    order: 1;
}

.plants_flowers .title {
    order: 2;
}

.plants_flowers .text {
    order: 3;
}

.biology {
    background-color: #ffe4e1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.food {
    background-color: #e18e96;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.img {
    /* flex-grow: 4; */
    width: 165px;
    height: 165px;
    background-color: hotpink;
    margin: 10px;
    align-self: flex-start;
}

.title {
    /* flex-grow: 2; */
    /* width: min-content; */
    height: min-content;
    align-self: flex-start;
    margin: 10px;
}

.text {
    width: 100%;
    /* flex-grow: 10; */
    text-align: justify;
    align-self: flex-end;
    margin: 20px;
}

@media (min-width: 769px) {
    .text {
        width: 40%;
    }
    .img {
        width: 200px;
        height: 200px;
        align-self: flex-start;
    }
    .skies {
        flex-wrap: nowrap;
        flex-direction: row;
        width: 80%;
        align-self: flex-end;
        margin: 10px;
        margin-right: 0px;
    }
    .skies .title {
        order: 4;
    }
    .plants_flowers {
        flex-wrap: nowrap;
        flex-direction: row;
        width: 80%;
        align-self: flex-start;
        margin: 10px;
        margin-left: 0px;
    }
    .plants_flowers .img {
        order: 5;
    }
    .biology {
        flex-wrap: nowrap;
        flex-direction: row;
        width: 80%;
        align-self: flex-end;
        margin: 10px;
        margin-right: 0px;
    }
    .food {
        flex-wrap: nowrap;
        flex-direction: row;
        width: 80%;
        align-self: flex-start;
        margin: 10px;
        margin-left: 0px;
    }
}

img {
    width: 100%;
    height: 100%;
}