section.content-apps {
    max-width: 1120px;
    margin: -8rem auto;
}

section.content-apps h1 {
    color: var(--purple);
    font-size: 2.5rem;
}

div.content-apps-img {
    position: absolute;
    background: var(--purple);
    margin-top: 1.5rem;
    width: 55rem;
    height: 32rem;
}

div.content-apps-img img {
    width: 20rem;
    margin: -4rem 4.5rem;
}

div.content-apps-options {
    position: relative;
    left: 34rem;
    top: 4rem;
    background: var(--gray-light);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    padding: 1rem;
    width: 46rem;
}

div.content-apps-options + div.content-apps-options {
    margin-top: 1rem;
}

div.content-apps-options img {
    width: 6rem;
    height: 6rem;
    margin-right: 1.5rem;
}

div.content-apps-options h1 {
    font-size: 1.6rem;
    color: var(--purple-text);
}

div.content-apps-options p {
    font-size: 1.1rem;
    color: var(--gray-text);
}

@media only screen and (max-width: 1024px) {
    section.content-apps > h1 {
        font-size: 3rem;
        text-align: center;
    }

    div.content-apps-img {
        width: 100%;
        height: 68rem;
    }

    div.content-apps-img img {
        margin: -4rem 25rem;
    }

    div.content-apps-options {
        left: .5rem;
        top: 30rem;
        width: 52rem;
        margin: auto;
    }

    div.content-apps-options img {
        width: 8rem;
        height: 8rem;
        margin-top: .8rem;
    }

    div.content-apps-options h1 {
        font-size: 2.2rem;
    }

    div.content-apps-options p {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 600px) {
    section.content-apps {
        margin-top: -7rem;
    }

    section.content-apps h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    div.content-apps-img {
        width: 100%;
        height: 18rem;
        text-align: center;
    }

    div.content-apps-img img {
        width: 12.5rem;
        margin: -3rem -3.2rem;
    }

    div.content-apps-options {
        display: grid;
        grid-template-columns: 1fr;
        margin: auto;
        left: 0;
        top: 21rem;
        width: 80%;
    }

    div.content-apps-options div {
        margin: auto;
    }
    
    div.content-apps-options img {
        width: 5rem;
        height: 5rem;
        margin: 0.5rem 4.5rem;
    }
    
    div.content-apps-options h1 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    div.content-apps-options p {
        font-size: 1.1rem;
        color: var(--gray-text);
    }
}