.content_container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    width: 80%;
    height: auto;
    margin-top: 5%;
}
.img_container {
    width: 100%;
    max-height: 40vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
img {
    width: auto;
    max-width: 25vw;
    height: auto;
    max-height: 40vh;
    padding: 1%;
}
strong {
    color: rgb(60, 139, 245);
}

@media screen and (max-width: 600px) {
    img {
        margin-top: 10%;
        max-width: 25vw;
    }
    .img_container {
        flex-direction: row;
        height: auto;
    }
}