.content_container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.content {
    max-width: 70%;
    text-align: center;
}
img {
    width: 50%;
    border-radius: 15px;
}

@media screen and (max-width: 600px) {
    img {
        width: 100%;
        margin-top: 50%;
    }
}