body {
    background-color: rgb(70, 70, 70);
}

.img_grid {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.take {
    /* height: auto; */
    max-width: 600px;
    padding-bottom: 15px;
}

.take img {
    width: 100%;
}

.single {
    max-width: 900px;
    padding-bottom: 15px;
}

.single img {
    width: 100%;
}

.next {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}

.next a {
    color: whitesmoke;
}

@media only screen and (max-width: 1200px) {
    .img_grid {
        margin-top: 15px;
        flex-direction: column;
    }
    .take {
        padding-bottom: 15px;
    }
    .next {
        padding-top: 30px;
    }
}