[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}


.welcome {
    position: relative;
    padding-top: 100px;
    width: 40px;
    margin: auto;

}

.welcome .circle {
    position: absolute;
    width: 38px;
    height: 38px;
    opacity: 0;
    transform: rotate(225deg);
    animation-iteration-count: infinite;
    animation-name: orbit;
    animation-duration: 5.5s;
}

.welcome .circle:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #fff;
    /* Pick a color */
}

.welcome .circle:nth-child(2) {
    animation-delay: 240ms;
}

.welcome .circle:nth-child(3) {
    animation-delay: 480ms;
}

.welcome .circle:nth-child(4) {
    animation-delay: 720ms;
}

.welcome .circle:nth-child(5) {
    animation-delay: 960ms;
}

@keyframes orbit {
    0% {
        transform: rotate(225deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    7% {
        transform: rotate(345deg);
        animation-timing-function: linear;
    }

    30% {
        transform: rotate(455deg);
        animation-timing-function: ease-in-out;
    }

    39% {
        transform: rotate(690deg);
        animation-timing-function: linear;
    }

    70% {
        transform: rotate(815deg);
        opacity: 1;
        animation-timing-function: ease-out;
    }

    75% {
        transform: rotate(945deg);
        animation-timing-function: ease-out;
    }

    76% {
        transform: rotate(945deg);
        opacity: 0;
    }

    100% {
        transform: rotate(945deg);
        opacity: 0;
    }
}

.frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    overflow: hidden;
    background: #fff;
    color: #333;
    font-family: "Open Sans", Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: black;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sentence {
    color: white;
    font-size: 30px;
    display: flex;
    align-items: flex-start;
}

.sentence p {
    white-space: nowrap;
    margin: 0 10px 0 0;
}

.sentence .word-switcher {
    overflow: hidden;
    height: 50px;
    position: relative;
}

.sentence .word {
    height: 35px;
    margin: 0;
    padding: 0;
    -webkit-animation: scroll 10s ease-in-out infinite;
    animation: scroll 8s ease-in-out infinite;
    display: block;
    position: relative;
    opacity: 0;
}

.sentence .word-2 {
    margin-top: -35px;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.sentence .word-3 {
    margin-top: -35px;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
}

.sentence .word-4 {
    margin-top: -35px;
    -webkit-animation-delay: 6s;
    animation-delay: 6s;
}

@-webkit-keyframes scroll {

    0%,
    5% {
        transform: translateY(100%);
        opacity: 0;
    }

    20%,
    30% {
        transform: translateY(0%);
        opacity: 1;
    }

    45%,
    50%,
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

@keyframes scroll {

    0%,
    5% {
        transform: translateY(100%);
        opacity: 0;
    }

    20%,
    30% {
        transform: translateY(0%);
        opacity: 1;
    }

    45%,
    50%,
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}
#loadingcss{
    height: 100vh;
    width: 100vw;
    background-color: black;

}