@media (max-width: 1199px) {

    main
    {
        padding: 1em;
    }

    h1
    {
        font-weight: 400;
    }

    p
    {
        font-size: 1.25em;
        font-weight: 300;
        line-height: 125%;
    }

    .container-image
    {
        margin-bottom: 1em;
        text-align: center;
    }

    .container-image img
    {
        display: inline-block;
        height: 200px;
    }

    .container-text
    {
        padding: 0 2em;
        text-align: center;
    }

}
@media (min-width: 1200px) {

    main
    {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 2em;
    }

    h1
    {
        font-weight: 300;
    }

    p
    {
        font-size: 1.5em;
        font-weight: 300;
        line-height: 125%;
    }

    .container-image
    {
        margin-right: 2em;
    }

    .container-image img
    {
        height: 350px;
    }

    .container-text
    {
        max-width: 400px;
    }

}