* {
    margin: 0;
    padding: 0;
}

/*NAV BAR--------------------------------------------------------------------------------------*/
.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;
    font-family: Helvetica, sans-serif;
    color: white;
    background-color: black;
}

.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;
    position: fixed;
    transform: translateX(100%);
    /* Start off-screen to the right */
    animation: slideInBottom 0.8s ease-out forwards;
    /* Animation triggers on page load */

}

/* 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;
}

a {
    width: fit-content;
}

.extra{
    user-select: none;
}

/*NAV BAR--------------------------------------------------------------------------------------*/


/*---------------------------------------------------------------------------------------------*/