body {
    background-image: url("../images/bg_mobile.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: 100vw;
    background-color: #5d003c;
}

* {
    font-family: Mulish;
}

.content {
    padding: 60px 20px;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

h1 {
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    margin-top: 40px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 8px;
}

@media(min-width: 768px) {
    .container--large {
        padding: 12px;
    }
}


@media(min-width: 992px) {
    .container--large {
        padding: 20px;
    }

    .content {
        padding: 100px 32px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    p {
        font-size: 20px;
    }
}