html{
    overflow: hidden;
    /* this is so the hollow text doesnt wiggle around lol */
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    background-image: var(--main-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: brightness(0%);
    filter: blur(4px);
    z-index: -1;

    transform: scale(1.1); 
    transform-origin: center;
}
.page-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;

    height: 100vh;
    color: white;
}

.middle-stuff {
    font-size: 8vw;
    font-family: "Press Start 2p";

    transform: translateY(-40%); 
    animation: slideIn 1s forwards ease-in-out;
    opacity: 0%;
}
.bottom-stuff
{
    display:inline-flex;
    text-align: center;
    position: fixed;
    left: 50%;
    bottom: 35%;
    z-index: 10;
    gap: 20px;

    transform: translateX(-50%) translateY(300%);
    animation: slideUp 1s forwards ease-in-out 0.75s;
    opacity: 0%;
}
.bottom-stuff a
{
    font-family: "SN Pro";
    font-size: 2vw;
    text-decoration: none;
    color: white;
    transition: color 0.1s ease-in-out;
}
.bottom-stuff a:hover
{
    color: grey;
}

/* Animation Keyframes */

@keyframes slideUp {
    50%
    {
        opacity: 0%;
    }
    100%
    {
        transform: translateX(-50%) translateY(20%);
        opacity: 100%;
    }
}
@keyframes slideIn {
    50%
    {
        opacity: 0%;
    }
    100% 
    {
        transform: translateY(0);
        opacity: 100%;
    }
}

/* Sizing Controls */

@media screen and (max-width: 768px) {
    .bottom-stuff a {
        font-size: 4vw;
    }
    .bottom-stuff
    {
        bottom: 35px;
    }
}