/* loader animation  */
            
#loader{
    height: 100vh;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    margin: 0;
    z-index: 1000;
    padding: 0;
}


.loader {
    width: fit-content;
    font-weight: bold;
    font-family: monospace;
    white-space: pre;
    color: white;
    font-size: 30px;
    line-height: 1.2em;
    height:1.2em;
    overflow: hidden;
}
.loader:before {
    content:"Loading...\A⌰oading...\A⌰⍜ading...\A⌰⍜⏃ding...\A⌰⍜⏃⎅ing...\A⌰⍜⏃⎅⟟ng...\A⌰⍜⏃⎅⟟⋏g...\A⌰⍜⏃⎅⟟⋏☌...\A⌰⍜⏃⎅⟟⋏☌⟒..\A⌰⍜⏃⎅⟟⋏☌⟒⏁.\A⌰⍜⏃⎅⟟⋏☌⟒⏁⋔"; 
    white-space: pre;
    display: inline-block;
    animation: l39 1s infinite steps(11) alternate;
}
.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

@keyframes l39 {
    100%{transform: translateY(-100%)}
}