/* Why are you here? Don't you have anything better to do?  */


html,
body {
    margin: 0;
    overflow: auto;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    overscroll-behavior-y: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-wrapper {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Apply to the whole page if the wrapper doesn't cover it */
html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Wow this is a really bad way of doing things. */
canvas {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -1;
    display: block;
}


.faustina-text {
    font-family: "Faustina", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


#c {
    position: fixed;
    background-attachment: fixed;
    z-index: -1;
    width: 100vw;
    height: 100vh;
}

.spookytext {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    align-content: flex-end;
    box-sizing: border-box;
    text-align: right;
    white-space: pre-line;
    font-style: italic;
    margin-top: 130vh;
    padding: 60px;
    bottom: 20px;
    right: 20px;
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: 300;
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .spookytext {
        padding: 20px;
    }
}