body, html {
    height: 100%;
    margin: 0;
}

.page-nothrow {
    background-image: url("fond.jpeg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.bg-black {
    position: absolute;
    height: 100%;
    width: 100%;
    background: black;
    z-index: 5;
}

.d-none {
    display: none;
}

.add {
    height: 10px;
    width: 10px;
    z-index: 10;
}

.top-left {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -100px;
    margin-left: -250px;
}

.bot-right {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 100px;
    margin-left: 250px;
}

.vertical-bar {
    background: white;
    height: 10px;
    width: 2px;
    margin-left: 4px;
}
.horizontal-bar {
    background: white;
    height: 2px;
    width: 10px;
    margin-top: -6px;
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
}

.logo {
    width: 300px;
    margin-top: -50px;
    margin-left: -200px;
}
.round {
    width: 100px;
    margin-top: -50px;
    margin-left: 80px;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.rotating {
    -webkit-animation: rotating 1400ms linear;
    -moz-animation: rotating 1400ms linear;
    -ms-animation: rotating 1400ms linear;
    -o-animation: rotating 1400ms linear;
    animation: rotating 1400ms linear;
}


