* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    background: hsl(215, 20.2%, 65.1%);
}
::-webkit-scrollbar-track {
    width: 5px;
    color: hsl(217, 32.6%, 17.5%);
    background: hsl(217, 32.6%, 17.5%);
}

::-webkit-scrollbar-thumb {
    width: 5px;
    background: hsl(327, 87.1%, 81.8%);
}

.gradient-text {
    background-image: linear-gradient(45deg, #ff00cc, #3333ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.line-1 {
    position: relative;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    text-align: center;
    width: 20.18em;
    white-space: nowrap;
    overflow: hidden;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

/* Animation */
.anim-typewriter {
    width: 0;
    /*animation: typewriter 4s steps(40) 1s 1 normal both,
             blinkTextCursor 500ms steps(40) infinite normal;*/
}

/*@keyframes typewriter{
  from{width: 0;}
  to{width: 24em;}
}

@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#loadingText {
    color: hsl(329, 85.5%, 70.2%);
    font-size: 24px;
    font-weight: 700;
}
