body {
    background-color: #0b0b0b;
    margin: 0;
    padding: 0;
    width: 100%;
    position: relative;
    display: block;
}

h1 {
    color: white;
}

p {
    color: white;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scrollgone::-webkit-scrollbar {
    display: none;
}

#loader-container {
    text-align: center;
    padding: 25vw;
    height: 80px;
    vertical-align: bottom;
}

.loader {
    display: inline-block;
    width: 10px;
    height: 20px;
    margin: 0.6px;
    background: #207AC9;
}

@keyframes move {
    0% {
        height: 40px;
    }
    50% {
        height: 10px;
    }
    100% {
        height: 40px;
    }
}

@keyframes move2 {
    0% {
        height: 10px;
    }
    50% {
        height: 40px;
    }
    100% {
        height: 10px;
    }
}

@keyframes move3 {
    0% {
        height: 30px;
    }
    50% {
        height: 10px;
    }
    100% {
        height: 30px;
    }
}

#loader-text {
    font-size: 1vw;
    font-family: "Source Code Pro";
    color: white;
    padding-bottom: 1vw;
}

#loader-one {
    animation-name: move;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    background: #e6197a;
}

#loader-two {
    animation-name: move2;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    background: #02dbef;
}

#loader-three {
    animation-name: move3;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    background: #e6197a;
}

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}


@media screen and (max-width: 1200px) {
    #loader-container {
        padding-top: 60vw;
    }

    #loader-text {
        font-size: 3vw;
        padding-bottom: 2vw;
    }

}
