:root {
    --primary: 5, 253, 216;
    --secondary: 10, 25, 47;

    --txt-1: 136, 146, 176;
    --txt-2: 168, 178, 209;
    --txt-3: 204, 214, 246;

    --bg-1: 17, 34, 64;
    --bg-2: 35, 53, 84;
    --bg-3: 204, 214, 246;

    --pulse-main: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 200px 100px" enable-background="new 0 0 200px 100px" xml:space="preserve"><polyline fill="none" stroke-width="3px" stroke="white" points="2.4,58.7 70.8,58.7 76.1,46.2 81.1,58.7 89.9,58.7 93.8,66.5 102.8,22.7 110.6,78.7 115.3,58.7 126.4,58.7 134.4,54.7 142.4,58.7 197.8,58.7 "/></svg>') 0 0 no-repeat;
    --font-sf-mono: 'SF Mono', sans-serif;
    --font-ubuntu: 'Ubuntu', sans-serif;
}

html {
    scrollbar-width: thin;
    scrollbar-color: rgb(var(--bg-2)) rgb(var(--secondary));
}

html::-webkit-scrollbar {
    width: 10px;
    background-color: transparent;
}

html::-webkit-scrollbar-thumb {
    background-color: #49556bd5;
}

html::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--bg-2));
}

html::-webkit-scrollbar-thumb:active {
    background-color: rgb(var(--bg-3));
}

body {
    background-color: rgb(var(--secondary));
    font-size: clamp(1rem, 0.75rem + 0.25vw, 1.25rem);
    font-weight: 400;
}

::selection {
    background-color: rgb(var(--bg-2));
    color: rgb(var(--txt-3));
}

a {
    color: unset;
    text-decoration: none;
}

a:hover {
    color: unset;
}

.mobile * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* #region (toggle navbar) */
.navbar-toggler {
    position: relative;
    background-color: transparent;
    box-shadow: none !important;
    border: none;
    display: block;
    width: 40px;
    height: 40px;
    z-index: 1050;
}

.navbar-toggler span {
    position: absolute;
    right: 0;
    content: "";
    display: block;
    width: 35px;
    height: 2px;
    background-color: rgb(var(--primary));
    transition: all 0.3s ease-in-out;
}

.navbar-toggler span:nth-child(1) {
    transform: translateY(-7px);
}

.navbar-toggler span:nth-child(2) {
    transform: translateY(0px);
    width: 27px;
}

.navbar-toggler span:nth-child(3) {
    transform: translateY(7px);
    width: 20px;
}

/* animation span dan membentuk x */
.navbar-toggler.open span:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
}

.navbar-toggler.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.open span:nth-child(3) {
    transform: translateY(0px) rotate(-45deg);
    width: 35px;
}

/* #endregion */
/* --------------------------------------- */
/* #region (header) */
.navbar {
    background-color: rgb(var(--secondary));
    font-family: var(--font-sf-mono);
}

.navbar-nav {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .nav-link {
    margin-left: 1rem;
    font-size: 13px;
    color: rgb(var(--txt-3));
    margin-top: auto;
    margin-bottom: auto;
}

.mobile .navbar .nav-link {
    margin-left: 0;
}

.navbar .nav-link span {
    color: rgb(var(--primary));
}

.navbar .nav-link:hover {
    color: rgb(var(--primary));
}

.navbar .nav-link.btn {
    color: rgb(var(--primary));
    border: 1px solid rgb(var(--primary));
    border-radius: 5px;
    padding: 8px 15px;
}

.navbar .nav-link.btn:hover {
    background-color: rgba(var(--primary), 0.1);
}

/* #endregion */
/* --------------------------------------- */
/* #region (offcanvas) */
.offcanvas-backdrop {
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .offcanvas {
        background-color: rgb(var(--bg-1));
    }

    .offcanvas .navbar-nav {
        width: 100%;
        padding-top: 4rem;
        overflow-y: auto;
    }

    .offcanvas .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        text-align: center;
    }

    .offcanvas .navbar-nav .nav-link span {
        display: block;
    }

    .offcanvas .navbar-nav .btn {
        width: 50%;
        margin: 1rem auto;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (footer) */
footer {
    font-family: var(--font-sf-mono);
    color: rgb(var(--txt-3));
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
}

footer .social {
    font-size: clamp(1rem, 0.75rem + 0.25vw, 1.25rem);
    position: fixed;
    left: 60px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .social a {
    padding: 14px 10px 0;
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

footer .social a:hover {
    color: rgb(var(--primary));
    padding-top: 10px;
    padding-bottom: 4px;
}

footer .social a:last-child {
    content: "";
    width: 1px;
    height: 75px;
    padding: 0;
    background-color: rgb(var(--bg-3));
    margin-top: 15px;
}

/* email */

footer .email {
    position: fixed;
    right: 60px;
    bottom: 0;
    left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer .email a:first-child {
    writing-mode: vertical-rl;
    padding-top: 10px;
    padding-bottom: 4px;
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

footer .email a:hover {
    color: rgb(var(--primary));
    transform: translateY(-6px);
}

footer .email a:last-child {
    content: "";
    width: 1px;
    height: 75px;
    background-color: rgb(var(--bg-3));
    margin-top: 15px;
    cursor: default;
}

footer p {
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
}

@media (max-width: 991.98px) {
    footer .social {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        left: 0;
        gap: 25px;
        margin-bottom: 10px;
    }

    footer .social a {
        padding: 0;
    }

    footer .social a:hover {
        padding: unset;
    }

    footer .social a:last-child {
        display: none;
    }

    footer .email {
        display: none;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (MAIN) */
main {
    font-family: var(--font-ubuntu);
    color: rgb(var(--txt-3));
}

@media (min-width: 767.98px) {
    main {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 991.98px) {
    main {
        padding-left: 150px;
        padding-right: 150px;
    }
}

@media (min-width: 1200px) {
    main {
        padding-left: 200px;
        padding-right: 200px;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (section top) */
.section_top {
    display: flex;
    align-items: center;
}

.section_top span {
    color: rgb(var(--primary));
    font-family: var(--font-sf-mono);
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
    line-height: 1.1;
    cursor: default;
}

.section_top .profile__title p {
    font-size: clamp(3.54rem, 2.08rem + 2.87vw, 7.5rem);
    font-weight: 600;
    font-family: 'Calibre Bold', sans-serif;
    margin: 0;
    line-height: 1;
    cursor: default;
}

.section_top .profile__title p:last-child {
    color: rgb(var(--txt-1));
    margin: 5px 0 20px 0;
}

.section_top .desc {
    max-width: 540px;
    font-size: 1.125rem;
    color: rgb(var(--txt-3));
    line-height: 1.3;
    position: relative;
    cursor: default;
}

.mobile .section_top {
    margin-top: -1rem;
}

.mobile .section_top .profile__title p {
    font-size: 2.5rem;
}

.mobile .section_top .desc {
    font-size: clamp(0.8rem, 3vw, 1.125rem);
}

/* #endregion */
/* --------------------------------------- */
/* #region (section title) */
section {
    min-height: 100vh;
}

section .section__title p {
    font-family: 'Calibre Bold', sans-serif;
    font-size: clamp(1.5rem, 1.25rem + 0.25vw, 1.75rem);
    color: rgb(var(--txt-3));
    font-weight: 600;
    position: relative;
    margin-bottom: 1rem;
}

section .section__title span {
    font-family: var(--font-sf-mono), sans-serif;
    font-size: clamp(1.125rem, 0.875rem + 0.25vw, 1.375rem);
    font-weight: 400;
    color: rgb(var(--primary));
    margin-right: 10px;
    user-select: none;
}

section .section__title p::after {
    z-index: -1;
    content: "";
    position: absolute;
    height: 1px;
    background-color: rgb(var(--bg-2));
    top: 50%;
    right: 0;
    width: calc(100% - 200px);
}

.mobile section .section__title p::after {
    display: none;
}

/* #endregion */
/* --------------------------------------- */
/* #region (about) */
#about .desc {
    font-family: 'Calibre Regular', sans-serif;
    color: rgb(var(--txt-2));
    text-align: justify;
}

.mobile #about .desc .d-flex {
    justify-content: center;
}

#about .desc ul {
    padding: 0;
    margin: 0;
    margin-top: 10px;
    list-style: none;
    column-count: 2;
    width: 80%;
}

#about .desc ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

#about .desc ul li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-size: 0.875rem;
    font-weight: 600;
    color: rgb(var(--primary));
    position: absolute;
    top: 10%;
    left: 0;
}

#about .wrapper {
    display: flex;
    justify-content: center;
}

#about .img_wrapper {
    position: relative;
    width: 60%;
    border-radius: 10px;
    background-color: rgb(var(--primary));
    animation: animateColor 5s linear infinite;
}

#about .img_wrapper:hover {
    animation-play-state: paused;
}

@keyframes animateColor {
    0% {
        filter: hue-rotate(0deg);

    }

    100% {
        filter: hue-rotate(360deg);
    }
}

#about .img_wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    border: 2px solid rgb(var(--primary));
    z-index: -1;
    transition: all 0.2s linear;

}

#about .img_wrapper img {
    border-radius: 10px;
    transition: all 0.2s linear;
    object-fit: cover;
    opacity: 0.5;
}

#about .img_wrapper:hover img {
    opacity: 1;
}

#about .img_wrapper:hover::after {
    top: 20px;
    left: 20px;
}

@media (max-width: 991.98px) {
    #about .img_wrapper {
        width: 50%;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (experience) */
#experience {
    min-height: 100vh;
    display: flex;
    /* justify-content: center;
    align-items: center; */
}

.mobile #experience {
    align-items: unset;
    padding-top: 80px;
}

#experience #nav_wrapper {
    display: flex;
    overflow: hidden;
    align-items: start;
}

.mobile #experience #nav_wrapper {
    display: block;
}

#experience #nav_wrapper .nav-link {
    font-family: 'Calibre Light', sans-serif;
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.25rem);
    white-space: nowrap;
}

#experience #pills-tab {
    overflow: visible;
    flex-direction: column;
    margin-right: 1rem;
}

.mobile #experience #pills-tab {
    overflow: auto;
    flex-direction: unset;
    margin-right: 0;
}

#experience .mobile-experience {
    flex-wrap: wrap;
}

.mobile #experience .mobile-experience {
    display: flex;
    width: max-content;
    flex-wrap: unset;
}

#experience .nav .nav-link {
    font-weight: 400;
    letter-spacing: 0.5px;
    border-left: 2px solid rgb(var(--bg-1));
    border-radius: 0;
    padding-right: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    color: rgb(var(--txt-3));
    background-color: transparent;
    transition: all 0.5s ease-in-out;
    width: 100%;
}

#experience .nav .nav-link.active {
    border-left: 2px solid rgb(var(--primary));
    color: rgb(var(--primary));
}

#experience .nav .nav-link:hover {
    background-color: rgb(var(--bg-1));
    color: rgb(var(--primary));
}

#experience .nav_header .loc {
    color: rgb(var(--txt-3));
    font-weight: 500;
    margin-bottom: 5px;
    font-size: clamp(1rem, 0.75rem + 0.25vw, 1.25rem);
    font-weight: 800;
}

#experience .nav_header .loc span {
    color: rgb(var(--primary));
    user-select: none;
    white-space: nowrap;
}

#experience .nav_header .datejob {
    color: rgb(var(--txt-2));
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.25rem);
    font-family: 'Calibre Light', sans-serif;
}

#experience .nav_header .datejob span:first-child {
    padding-right: 10px;
    border-right: 1px solid rgba(var(--txt-3), 0.5);
}

#experience .nav_header .datejob span:last-child {
    padding-left: 10px;
}

#experience .nav_body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 10px;
    text-align: justify;
}

#experience .nav_body ul li {
    color: rgb(var(--txt-2));
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    font-family: 'Calibre Light', sans-serif;
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.25rem);
    padding-left: 15px;
}

#experience .nav_body ul li::before {
    content: '\f0da';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: rgb(var(--primary));
    position: absolute;
    left: 0;
    top: 10%;
}

.mobile #experience .nav {
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

.mobile #experience .nav::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.mobile #experience .nav .nav-link {
    border-left: 1px solid transparent;
    border-left: unset;
    border-bottom: 2px solid rgb(var(--bg-2));
    padding: 10px 20px;
    text-align: center;
}

.mobile #experience .nav .nav-link.active {
    border-left: unset;
    border-bottom: 2px solid rgb(var(--primary));
}

.mobile #experience .nav_header {
    padding-top: 20px;
}

/* #endregion */
/* --------------------------------------- */
/* #region (project) */

#project .project_wrapper {
    list-style: none;
    padding: 0;
}

#project .project_wrapper .content {
    list-style: none;
    padding: 0 0 60px;
    display: grid;
}

#project .content .main_content {
    position: relative;
    grid-column: 6 / 13;
    grid-row: 1 / 1;
    height: 100%;
    z-index: 2;
    align-content: center;
}

#project .content .side_content {
    position: relative;
    grid-column: 1 / 8;
    grid-row: 1 / 1;
    z-index: 1;
    height: 100%;
    box-shadow: 0 10px 30px -15px rgb(var(--secondary));
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 4px;
    overflow: hidden;
}

/* main content */
#project .main_content .overline {
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
    margin: 10px 0;
    color: rgb(var(--primary));
    font-family: var(--font-sf-mono);
    text-align: right;
}

#project .card_content {
    text-align: right;
}

#project .main_content .title {
    font-size: clamp(1.5rem, 1.25rem + 0.25vw, 1.75rem);
    font-family: 'Calibre Bold', var(--font-ubuntu), sans-serif;
    color: rgb(var(--txt-3));
    font-weight: 600;
}

#project .main_content .desc {
    box-shadow: 0px 10px 30px -15px rgba(2, 12, 27, 0.7);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    position: relative;
    z-index: 2;
    padding: 20px 20px;
    border-radius: 4px;
    background-color: rgb(var(--bg-1));
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.25rem);
    font-family: 'Calibre Light', sans-serif;
    color: rgb(var(--txt-2));
}

#project .main_content .tech_list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    margin-right: -10px;
    padding: 0;
    list-style: none;
    justify-content: flex-end;
}

#project .main_content .tech_list li {
    padding: 5px 10px;
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
    color: rgb(var(--txt-3));
    font-family: 'Calibre Light', sans-serif;
    white-space: nowrap;
}

#project .main_content .link {
    display: flex;
    -moz-box-align: center;
    align-items: center;
    margin-right: -10px;
    justify-content: flex-end;
}

#project .main_content .link a {
    display: flex;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
}

#project .main_content .link a:hover {
    color: rgb(var(--primary));
}

/* side content */
#project .side_content a {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    background-color: rgb(var(--secondary));
    mix-blend-mode: screen;
}

#project .side_content a .screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(var(--bg-1));
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#project .side_content a img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: fill;
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#project .content .side_content a:hover .screen {
    opacity: 0.3;
}

/* nth 2n */

#project .content:nth-child(even) .main_content {
    grid-column: 1 / 8;
}

#project .content:nth-child(even) .side_content {
    grid-column: 6 / 13;
}

#project .content:nth-child(even) .main_content * {
    text-align: left;
}

#project .content:nth-child(even) .tech_list {
    margin-left: auto;
    margin-left: -10px;
    justify-content: flex-start;
}

#project .content:nth-child(even) .link {
    margin-left: auto;
    margin-left: -10px;
    justify-content: flex-start;
}


@media (max-width: 991.98px) {
    #project .section__title {
        margin-bottom: 30px;
    }

    #project .content:not(:last-child) {
        padding-bottom: 30px;
    }

    #project .content .main_content {
        grid-column: 1 / 13;
        grid-row: 1 / 1;
        padding: 20px 30px 50px;
    }

    #project .content .side_content {
        grid-column: 1 / 13;
        grid-row: 1 / 1;
    }

    #project .content:nth-child(2n) .main_content {
        grid-column: 1 / 13;
        grid-row: 1 / 1;
    }

    #project .content:nth-child(2n) .side_content {
        grid-column: 1 / 13;
        grid-row: 1 / 1;
    }

    #project .content .overline,
    #project .content .title {
        text-align: left;
    }

    #project .main_content .desc {
        background-color: transparent;
        box-shadow: unset;
        transition: unset;
        padding: 20px 0;
        text-align: left;
    }

    #project .main_content .tech_list,
    #project .main_content .link {
        justify-content: flex-start;
        margin-right: auto;
        margin-left: -10px;
    }

    #project .content .side_content .content a .screen {
        opacity: 0.9;
    }

    #project .content .side_content a img {
        opacity: 0.05;
    }

    #project .content:hover .side_content a img {
        opacity: 0.1;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (draft) */
#draft .section__title p {
    text-align: center;
    margin-bottom: 5px;
}

#draft .section__title p::after {
    display: none;
}

#draft .section__title a {
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
    font-family: var(--font-sf-mono);
    display: block;
    text-align: center;
    color: rgba(var(--primary), 0.65);
}

#draft .section__title a:hover {
    transition: all 0.3s ease-in-out;
    color: rgb(var(--primary));
}

#draft .wrapper {
    height: 100%;
    padding-top: 10px;
    transition: all 0.3s ease-in-out;
}

#draft .wrapper:hover {
    padding-top: 2px;
    padding-bottom: 8px;
}

#draft .card {
    background-color: rgb(var(--bg-1));
    border: none;
    box-shadow: 0px 10px 30px -15px rgba(2, 12, 27, 0.7);
    height: 100%;
}

#draft .card-header {
    border: none;
    background-color: rgb(var(--bg-1));
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 20px;
}

#draft .card-header .fa-folder {
    font-size: 28px;
    color: rgb(var(--primary));
}

#draft .card-header .link a {
    padding-left: 10px;
}

#draft .card-header .link a:hover {
    color: rgb(var(--primary));
}

#draft .card-body {
    padding-top: 0;
}

#draft .card-body .title {
    font-size: clamp(1.25rem, 1rem + 0.25vw, 1.5rem);
    font-family: 'Calibre Bold', var(--font-ubuntu), sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

#draft .card:hover .card-body .title {
    color: rgb(var(--primary));
}

#draft .card-body .desc {
    color: rgb(var(--txt-2));
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.25rem);
    font-family: 'Calibre Medium', sans-serif;
}

#draft .card-footer {
    background-color: rgb(var(--bg-1));
    border: none;
}

#draft .card-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#draft .card-footer li {
    color: rgb(var(--txt-1));
    line-height: 1.75;
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
    font-family: 'Calibre Light', sans-serif;
    margin-right: 15px;
    margin-bottom: 5px;
}

/* #endregion */
/* --------------------------------------- */
/* #region (contact) */
#contact {
    display: flex;
    align-items: center;
}

#contact .section__title p {
    color: rgb(var(--primary));
    font-size: clamp(1.125rem, 0.875rem + 0.25vw, 1.375rem);
    font-weight: 400;
    font-family: var(--font-sf-mono);
    margin-bottom: 0;
}

#contact .section__title p::after {
    display: none;
}

#contact .wrapper .title {
    font-size: 2.75rem;
    font-family: var(--font-ubuntu);
    color: rgb(var(--txt-3));
    font-weight: 700;
    margin-bottom: 0;
}

#contact .wrapper .desc {
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.125rem);
    color: rgb(var(--txt-1));
    font-family: 'Calibre Light', sans-serif;
}

#contact .wrapper .btn {
    font-size: 14px;
    color: rgb(var(--primary));
    background-color: transparent;
    border: 1px solid rgb(var(--primary));
    border-radius: 7px;
    padding: 15px 30px;
    transition: all 0.3s ease-in-out;
}

#contact .wrapper .btn:hover {
    background-color: rgba(var(--primary), 0.1);
}

/* #endregion */
/* --------------------------------------- */
/* #region (archive) */
#archive {
    padding-top: 7rem;
    min-height: 100vh;
}

@media (max-width: 991.98px) {
    main#archive {
        padding-left: unset;
        padding-right: unset;
    }
}

#archive h1 {
    font-weight: 700;
}

#archive .desc {
    color: rgb(var(--primary));
    font-family: var(--font-sf-mono);
}

#archive table {
    margin-top: 3rem;
    color: rgb(var(--txt-3));
}

#archive table tr th,
#archive table tr td {
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: default;
}

#archive table tbody tr {
    transition: all 0.3s ease-in-out;
}

#archive table tbody tr:hover {
    background-color: rgb(var(--bg-1));
}

#archive table tr th {
    letter-spacing: 1px;
    font-weight: 600;
}

#archive table tr td {
    vertical-align: middle;
    font-size: clamp(0.875rem, 0.625rem + 0.25vw, 1.125rem);
}

#archive table tr td:first-child {
    font-family: var(--font-sf-mono);
    color: rgb(var(--primary));
}

#archive table tr td:nth-child(2),
#archive table tr td:nth-child(3) {
    white-space: nowrap;
}

.mobile #archive table tr td:nth-child(3) {
    color: rgb(var(--txt-1));
    font-family: var(--font-sf-mono);
}

#archive table .tech {
    font-family: var(--font-sf-mono);
    font-size: clamp(0.75rem, 0.5rem + 0.25vw, 1rem);
    color: rgb(var(--txt-2));
}

#archive table .tech span {
    padding: 5px 0;
    display: inline-block;
}

#archive table .link div {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    white-space: nowrap;
}

#archive table .link a {
    transition: all 0.3s ease-in-out;
}

#archive table .link a:hover {
    color: rgb(var(--primary));
}

/* #endregion */
/* --------------------------------------- */
/* #region (loader) */
#loader {
    background-color: rgb(var(--secondary));
    width: 100%;
    height: 105vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    position: fixed;
}

.pulse {
    height: 100px;
    width: 200px;
    overflow: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.pulse:after {
    content: "";
    display: block;
    background: var(--pulse-main);
    width: 100%;
    height: 100%;
    position: absolute;
    -webkit-animation: 2s pulse linear infinite;
    -moz-animation: 2s pulse linear infinite;
    -o-animation: 2s pulse linear infinite;
    animation: 2s pulse linear infinite;
    clip: rect(0, 0, 100px, 0);
}

.pulse:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 2px;
    right: 2px;
    bottom: 0;
    top: 16px;
    margin: auto;
    height: 3px;
}

@-webkit-keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
        opacity: 0.4;
    }

    4% {
        clip: rect(0, 66.66667px, 100px, 0);
        opacity: 0.6;
    }

    15% {
        clip: rect(0, 133.33333px, 100px, 0);
        opacity: 0.8;
    }

    20% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 1;
    }

    80% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    90% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    100% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        clip: rect(0, 0, 100px, 0);
    }

    4% {
        clip: rect(0, 66.66667px, 100px, 0);
    }

    15% {
        clip: rect(0, 133.33333px, 100px, 0);
    }

    20% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 1;
    }

    80% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }

    90% {
        opacity: 0;
    }

    100% {
        clip: rect(0, 300px, 100px, 0);
        opacity: 0;
    }
}

/* #endregion */
/* --------------------------------------- */
/* #region (404 */
#not_found {
    background-color: rgb(var(--secondary));
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

#not_found * {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#not_found h3 {
    z-index: 2;
    font-family: 'Ubuntu', sans-serif;
    color: rgba(var(--bg-3), 0.5);
    margin: 0;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(var(--bg-3), 0.5);
}

#not_found div {
    z-index: 2;
    padding: 0.5rem 1rem;
    font-weight: 100;
    color: rgb(var(--txt-1));
    letter-spacing: 1px;
}

#not_found p {
    margin: 0;
}

#not_found a {
    color: rgba(var(--primary), 0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

#not_found a:hover {
    color: rgb(var(--primary), 0.75);
}

/* #endregion */
/* --------------------------------------- */