body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: Helvetica, sans-serif;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
}


/*RIGHT TITLE CONTENT--------------------------------------------------------------------------*/
.container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    opacity: 0;
    /* Start invisible */
    transform: translateX(100%);
    /* Start off-screen to the right */
    animation: slideIn 0.8s ease-out forwards;
    /* Animation triggers on page load */
    mix-blend-mode: difference;

}

/* Define the keyframes for sliding and fading */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.content {
    text-align: right;
    writing-mode: vertical-rl;
    font-size: 24px;
    position: relative;

}

.content p {
    font-size: 12vh;
    margin: 0;
    font-weight: 700;
    mix-blend-mode: difference;
}

.clock {
    font-size: 3vh;
    margin-top: 10px;
    mix-blend-mode: difference;
    padding-bottom: 1vh;
}

.image {
    display: block;
    position: absolute;
}

.image img {
    height: 70vh;
    width: 20vh;
    object-fit: cover;
    position: relative;
    display: block;
    padding-top: 10vh;
    pointer-events: none;
    user-select: none;
}

/*RIGHT TITLE CONTENT--------------------------------------------------------------------------*/


/*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;
    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;
}

/*NAV BAR--------------------------------------------------------------------------------------*/


/*BOTTOM LEFT----------------------------------------------------------------------------------*/
.nav-bottom-left {
    z-index: 100;
    mix-blend-mode: difference;
    padding-bottom: 0;
    inset: auto auto 0% 0%;
    justify-content: space-between;
    margin-left: 20px;
    margin-right: 10px;
    display: flex;
    position: fixed;
    opacity: 0;
    /* Start invisible */
    transform: translateX(100%);
    /* Start off-screen to the right */
    animation: slideInBottom 0.8s ease-out forwards;
    /* Animation triggers on page load */
    mix-blend-mode: difference;

}

/* Define the keyframes for sliding and fading */
@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.nav-bottom-left a {
    color: rgb(255, 255, 255);
}

.nav-bottom-left a:hover {
    opacity: .6;
}

/*BOTTOM LEFT----------------------------------------------------------------------------------*/




/*---------------------------------------------------------------------------------------------*/