/* Стили для мобильных устройств */
@media only screen and (max-width: 767px) {
    /* Общие стили */
    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        font-size: 16px;
	background-image: url('images/bg-mobile.jpg');
        background-repeat: no-repeat;
	background-size: cover;
    }
}

/* Стили для компьютеров */
@media only screen and (min-width: 768px) {
    /* Общие стили */
    html,
    body {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
	background-image: url('images/bg.jpg');
        background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100vh;
        overflow-x: hidden;
        font-size: 16px;
    }
}