body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    font-family: Helvetica, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
    justify-content: center;
}

/*NAV BAR--------------------------------------------------------------------------------------*/
.navigation {
    z-index: 100;
    color: rgb(255, 255, 255);
    mix-blend-mode: difference;
    justify-content: space-between;
    display: flex;
    position: fixed;
    inset: 0% 0% auto;
    font-weight: 600;
    width: 100%;
    opacity: 0;
    /* Start invisible */
    transform: translateY(100%);
    /* Start off-screen to the right */
    animation: slideInNav 0.8s ease-out forwards;
    /* Animation triggers on page load */
    mix-blend-mode: difference;
}

/* Define the keyframes for sliding and fading */
@keyframes slideInNav {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navigation a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    mix-blend-mode: difference;
}

.navigation a:hover {
    opacity: .7;
}

.nav-left {
    display: flex;
    box-sizing: border-box;
}

.nav-title {
    padding-left: 10px;
    padding-right: 10px;
}

.nav-wrapper {
    display: flex;
    box-sizing: border-box;
}

.nav-link.current {
    text-decoration: underline;
    text-underline-position: under;
}

.nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    text-decoration: none;
    transition: opacity .3s cubic-bezier(.77, 0, .175, 1);
    display: flex;
    letter-spacing: -0.1px;
}

.paragraph {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

.div-divider {
    padding-left: 2px;
    padding-right: 2px;
}


.nav-link.graphic {
    justify-content: flex-start;
    align-items: center;
    padding-left: 10px;
}

.dot {
    background-color: #ffffff;
    border-radius: 100%;
    width: 10px;
    height: 10px;
}

.dot:hover {
    opacity: 0.9;
}

.pspace {
    padding-left: 2px;
    padding-right: 2px;
}

.clock {
    padding-top: 10px;
    padding-right: 10px;
}

/*NAV BAR--------------------------------------------------------------------------------------*/


/*CONTENT--------------------------------------------------------------------------------------*/
.content {
    text-align: center;
    display: flex;
    width: 50vh;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    /* Ensures content wraps and doesn't get cut off */
    justify-content: center;
    /* Centers content in the middle */
    align-items: center;
    width: 100%;
    /* Makes container take full width of the screen */
    box-sizing: border-box;
    /* Ensures content fits inside the container */
    max-width: 1200px;
    /* Optional: You can set a maximum width */
    opacity: 0;
    /* Start invisible */
    transform: translateY(20%);
    /* Start off-screen to the right */
    animation: slideInCon 0.8s ease-out forwards;
    /* Animation triggers on page load */
    mix-blend-mode: difference;

}

/* Define the keyframes for sliding and fading */
@keyframes slideInCon {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .content {
        width: 70vw;
        /* On smaller screens, make content take full width */
    }

    .container {
        width: 100%;
        /* Ensures container still fills the screen width */
        padding: 10px;
        /* Add some padding for smaller screens */
    }
}

img {
    pointer-events: none;
    user-select: none;
}

/*CONTENT--------------------------------------------------------------------------------------*/





/*---------------------------------------------------------------------------------------------*/