.html, body {
    font-family: "Canal+25", sans-serif;
    background-image: url("images/mobile_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    min-height: 100vh;
    margin: 0;
}

.mobile-break {
    display: block;
}

.container {
    max-width: 1024px;
    margin: auto;
    padding: 0 16px;
}

.header {
    margin-top: 50px;
}

.header h1 {
    font-size: 16px;
    font-weight: bold;
    color: white;
    font-style: italic;
    margin-bottom: 20px;
}

.header h2 {
    font-size: 12px;
    line-height: 20px;
    color: white;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 26px;
}

.header p {
    font-size: 12px;
    line-height: 20px;
    color: white;
    font-style: italic;
    font-weight: 400;
    margin-bottom:30px;
}

.button {

}

.button button {
    font-family: "OpenSans", sans-serif;
    margin-bottom: 50px;
    border: 4px solid #ff00ff;
    border-radius: 50px;
    background: transparent;
}

.button button a {
    padding: 5px 30px;
    color: white;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
}

.devices {

}

.devices img {
    max-width: 100%;
}

@media only screen and (min-width: 768px) {
    body {
        background-image: url("images/desktop_bg.png");
    }

    .mobile-break {
        display: none;
    }

    .header {
        margin-top: 100px;
    }

    .header h1 {
        font-size: 55px;
        margin-bottom: 80px;
    }

    .header h2 {
        font-size: 35px;
        margin-bottom: 92px;
        line-height: 40px;
    }

    .header p {
        font-size: 35px;
        margin-bottom: 100px;
    }

    .button button {
        font-size: 36px;
        margin-bottom: 100px;
    }

    .button button a {
        padding: 25px 50px;
        font-size: 26px;
    }
}