html, body {
    height: 100%;
    min-height: 100%;
}

body {
    background: url('../images/pattern.jpg') repeat 0 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container {
    width: 740px;
    height: 690px;
    background: #FFFFFF;
    text-align: center;
}

.main-container .logo {
    margin-top: 45px;
}

.main-container .image {
    margin-top: 30px;
}

.main-container .text {
    margin-top: 10px;
    line-height: 120%;
    font-size: 18px;
}

.main-container .text a {
    color: #ca2c14;
    text-decoration: none;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

@media (max-width: 768px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    html, body {
        overflow-x: hidden
    }

    .main-container {
        border-radius: 100%;
        min-width: 740px;
        overflow-x: hidden;
    }

    .main-container .inner {
        padding: 20px 100px;
    }

    .main-container .logo img {
        /* width:314px; */
        width:270px;
        height: auto;
    }

    .main-container .image img {
        /* width:405px; */
        width:360px;
        height: auto;
    }

    .main-container .text {
        margin: 20px auto 0;
        text-align: center;
        font-size: 16px;
        width: 300px;
    }
}