.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #15151b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.Loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 14.6rem;
    margin-top: 7.3rem;
    margin-bottom: 7.3rem;
}

.Loader:before,
.Loader:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    animation-duration: 1.8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    filter: drop-shadow(0 0 1.7rem rgba(230, 180, 45, 0.75));
}

.Loader:before {
    width: 100%;
    padding-bottom: 100%;
    box-shadow: inset 0 0 0 1.7rem #c0922f;
    animation-name: pulsA;
}

.Loader:after {
    width: calc(100% - 3.4rem);
    padding-bottom: calc(100% - 3.4rem);
    box-shadow: 0 0 0 0 #fff;
    animation-name: pulsB;
}

@keyframes pulsA {
    0% {
        box-shadow: inset 0 0 0 1.7rem #fff;
        opacity: 1;
    }

    50%,
    100% {
        box-shadow: inset 0 0 0 0 #fff;
        opacity: 0;
    }
}

@keyframes pulsB {

    0%,
    50% {
        box-shadow: 0 0 0 0 #fff;
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 1.7rem #fff;
        opacity: 1;
    }
}

.loaded {
    display: block;
}

.loading {
    display: none;
}

@import url("https://fonts.googleapis.com/css?family=Raleway:900&display=swap");

body {
    margin: 0px;
}

#txt-wrapper {
    position: absolute;
    margin: auto;
    width: 100vw;
    height: 80pt;
    top: 0;
    bottom: 0;

    filter: url(#threshold) blur(0.6px);
}

#text1,
#text2 {
    position: absolute;
    width: 100%;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    font-size: 80pt;
    text-align: center;
    user-select: none;
}

@import url("https://fonts.googleapis.com/css?family=Sacramento&display=swap");

.neonText {
    font-size: calc(20px + 18vh);
    color: #eeeeee;
    font-family: "Sacramento", cursive;
    text-align: center;
    animation: blink 12s infinite;
    -webkit-animation: blink 12s infinite;
}


@-webkit-keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        color: #eeeeee;
    }
}

@keyframes blink {

    20%,
    24%,
    55% {
        color: #111;
        text-shadow: none;
    }

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        color: #eeeeee;
    }
}