html, body {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    font-family: 'Roboto', sans-serif;
}

html *, body * {
    box-sizing: border-box;
    position: relative;
}

p {
    margin: 0;
}

body .background-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

body .content-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}

body .background-wrapper[data-background="1"] .background--1 {
    opacity: 1;
}
body .background-wrapper[data-background="2"] .background--2 {
    opacity: 1;
}
body .background-wrapper[data-background="3"] .background--3 {
    opacity: 1;
}
body .background-wrapper[data-background="4"] .background--4 {
    opacity: 1;
}
body .background-wrapper[data-background="5"] .background--5 {
    opacity: 1;
}
body .background-wrapper[data-background="6"] .background--6 {
    opacity: 1;
}
body .background-wrapper[data-background="7"] .background--7 {
    opacity: 1;
}
body .background-wrapper[data-background="8"] .background--8 {
    opacity: 1;
}

body .background {
    height: 100vh;
    width: 100vw;
    background: center center no-repeat;
    background-size: cover;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

body .background.background--1 {
    background-image: url("/assets/1.jpg");
}

body .background.background--2 {
    background-image: url("/assets/2.jpg");
}

body .background.background--3 {
    background-image: url("/assets/3.jpg");
}

body .background.background--4 {
    background-image: url("/assets/4.jpg");
}

body .background.background--5 {
    background-image: url("/assets/5.jpg");
}

body .background.background--6 {
    background-image: url("/assets/6.jpg");
}

body .background.background--7 {
    background-image: url("/assets/7.jpg");
}

body .background.background--8 {
    background-image: url("/assets/8.jpg");
}

.maintenance {
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    padding: 20px;
}

.maintenance__main {
    display: flex;
    flex-direction: row;
}

.maintenance__logo {
    background: url("/assets/pik.svg") no-repeat center center;
    width: 64px;
    height: 64px;
    margin-right: 20px;
}

.maintenance__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.maintenance__text {
    font-size: 13px;
}

.maintenance__comment {
    margin-top: 20px;
    font-weight: bold;
}
