.example::-webkit-scrollbar {
    display: none;
}

.backgroundContainer {
    position: absolute;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background {
    background-image: url("../images/background.svg");
    background-size: 100px;
    opacity: 0.2;
    position: absolute;
    width: calc(100% + 100px);
    height: calc(100vh + 100px);
    animation: movingbg 1.5s infinite linear;
}

@keyframes movingbg {
    from {
        top: 0px;
        right: 0px;
    }
    to {
        top: -100px;
        right: -100px;
    }
}

.splashscreen {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px);
}

.splashscreen .center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%) skew(-1.5deg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.SplashTxt {
    color: rgba(0, 0, 0, 0);
    background-image: -webkit-gradient(linear, left bottom, left top, from(white), to(white));
    background-image: linear-gradient(0deg, white 100%);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    margin: 5px auto 5px 10px;
    padding: 3px 20px;
    font-weight: 300;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.down {
    content: url("../images/Arrow.svg");
    clear: both;
    width: 45px;
    height: 45px;
    background-color: white;
    margin: 5px 10px;
    opacity: 0;
}

.fadein {
    opacity: 1;
}

.animateIn {
    animation: in 0.6s ease-out;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
    opacity: 1;
}

@keyframes in {
    0% {
        color: rgba(0, 0, 0, 0);
        bacgkround-size: 0% 100%;
    }
    80% {
        color: rgba(0, 0, 0, 0);
        background-size: 100% 100%;
    }
    100% {
        color: black;
        background-size: 100% 100%;
    }
}