/*Обнуление*/
*,*:before,*:after{
    padding: 0;
    margin: 0;
    border: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
/*Стили для демонстрации*/
body{
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.wrapper{
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}
/*Основные стили*/
.page {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.parallax {
    position: relative;
    height: 100%;
}
.parallax_mountain {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.parallax_mountain_1 {
    background: url('img/mountain_1.jpg') 0 0 / cover no-repeat;
}
.parallax_mountain_2 {
    z-index: 1;
    background: url('img/mountain_2.png') bottom right / 45% no-repeat; /*45% (пикселей) по ширине, внизу справа*/
}
.parallax_mountain_3 {
    z-index: 1;
    background: url('img/mountain_3.png') left bottom / 45% no-repeat; /*45% (пикселей) по ширине, внизу слева*/
}

.parallax_fog {
    background: url('img/fog.png') bottom / 100% no-repeat; /*100% по ширине и размещаем снизу*/
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2; /*чтобы туман накрыл наши горы*/
}

.content {
    position: relative;
}
.content_body {
    max-width: 1170px; /*ограничим по ширине*/
    margin: 0px auto; /*выровнять по центру*/
}
.content_header {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 0px 20px;
}
.content_title {
    font-size: 200px;
}
.content_subtitle {
    font-size: 120px;
}
.content_article {
    background-color: rgba(255,255,255,0.5);
    padding: 25px;
    font-size: 18px;
    line-height: 24px;
}

.content_article p {
    margin-bottom: 20px;
}
