@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes blur {
    0% {filter: blur(10px);}
    100% {filter: blur(0.25px);}
}
@keyframes spinText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    overflow: auto;
    background-color: #1e1c1c;
}
p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 5px;
    transform: scaleX(3.5);
    word-wrap: break-word;
    animation: fade 2s ease 0s backwards;
    filter: blur(0.5px)
}
a:link, a:visited, a:active  {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.1;
    transition: opacity 0.5s ease;
}
a:hover {
    opacity: 1;
}
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    letter-spacing: 10px;
    transform: scaleX(3.5);
}
#vanta-bg {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#scrollButton {
    width: 50px;
    height: 50px;
    font-size: 50px;
    opacity: 0.7;
    background-color: transparent;
    position: fixed;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    border: none;
    cursor: pointer;
    transition: top 0.3s ease-in-out, opacity 0.5s ease;
    z-index: 2;
}
#scrollButton span {
    display: inline-block;
    padding-bottom: 10px;
    transform: scaleX(1.5);
    filter: blur(0.33px);
    color: #bf5a7b;
}
#scrollButton:hover {
    opacity: 1;
}
#blurOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    animation: fade 2s ease backwards;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}
.numbers {
    opacity: 0.1;
    color: grey;
    position: relative;
    z-index: 1;
    text-align: center; /* Centers inline content */

    display: block;
    justify-content: flex-start;
    align-items: flex-start;
    word-wrap: break-word;
    white-space: normal;
    margin: 20px auto;
    max-width: 28%;
}

.title {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    opacity: 0;
    user-select: none;
    animation: fade 2s ease 1s forwards, blur 1s ease 2s forwards;
    filter: blur(10px);
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}

@media (max-width: 700px) {
    p, h1 {
        letter-spacing: 4px;
    }
    h1 {
        font-size: 3vw;
        padding-left: 1vw;
        transform: scaleX(4);
    }
    p {
        position: relative;
        filter: blur(0.25px);
        font-size: 3vw;
        transform: scaleX(3);
    }
    
    a:link, a:visited, a:active  {
        font-size: 3vw;
        opacity: 1;
    }

    .numbers {
        padding-left: 1vw;

        opacity: 0.8;
    }
}
