html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: Arial, sans-serif;
    padding: 20px 0 0;
    background-color: #181717;
    overflow: hidden;
    height: 100vh;
    box-sizing: border-box;
}

body.iframe-page {
    display: flex;
    flex-direction: column;
    padding: 0;
    align-items: stretch;
    justify-content: flex-start;
    background: #202024;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

.banner,
.body-block {
    width: 80%;
    box-sizing: border-box;
    color: #ffffff;
}

.banner {
    margin-bottom: 20px;
}

.banner-card {
    position: relative;
    width: 100%;
    aspect-ratio: 12 / 1;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    background: url('images/banner.jpg') center/cover no-repeat;
    background-color: #111;
}



.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
}

.banner-icon {
    width: clamp(64px, 12vw, 120px);
    height: auto;
    flex: 0 0 auto;
    object-fit: contain;
}

.banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.banner-tag,
.banner-sub {
    margin: 0;
    font-family: "Special Elite", system-ui;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(0.75rem, 1.4vw, 0.95rem);
}

.banner-copy h2 {
    margin: 0;
    font-family: 'Nerdopol Lattice', Georgia, serif;
    font-size: clamp(1.6rem, 5vw, 3rem);
    line-height: 1;
}

.content-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    width: 80%;
    flex: 1 1 auto;
    min-height: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.body-block {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    background-color: #202024;
    min-height: 0;
    overflow: hidden;
}

.side-column {
    width: 7em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    overflow-y: auto;
}

.dropdown-card {
    background: #1B1B24;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.dropdown-card summary {
    list-style: none;
    cursor: pointer;
    padding: 6px 8px;
    font-family: "Special Elite", system-ui;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(3, 3, 3, 0.7);
    background: linear-gradient(0deg, rgba(3, 3, 3, 0.7) 0%, rgba(30, 28, 28, 0.7) 3%, rgba(13, 13, 13, 0.7) 23%, rgba(21, 21, 38, 0.7) 64%, rgba(25, 25, 40, 0.7) 81%, rgba(60, 60, 60, 0.7) 97%, rgba(40, 37, 53, 0.7) 100%);
}

.dropdown-card summary::after {
    content: '▾';
    font-size: 1.3rem;
    color: #8a8a8a;
}

.dropdown-card[open] summary::after {
    content: '▴';
}

.dropdown-card summary::-webkit-details-marker {
    display: none;
}

.button-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 5px;
}

.button-grid a,
.button-grid img {
    display: inline-block;
    width: 100%;
    height: 100%;
}

.button-grid img {
    height: auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.visitorcount {
    background: rgba(20, 20, 24, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    color: #ffffff;
    font-family: "Special Elite", system-ui;
    font-size: 0.9em;
    line-height: 1.2;
}

.visitorcount p {
    justify-self: center;
    align-items: center;
    margin: 0;
    font-size: 0.9em;

    color: #adadad;
}

.mini-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 6px;
    border-radius: 2px;
}

.menu {
    font-size: 1em;
    font-family: "Special Elite", system-ui;
    display: flex;
    width: 100%;
    height: 35px;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 3, 3, 0.7);
    background: linear-gradient(0deg, rgba(3, 3, 3, 0.7) 0%, rgba(30, 28, 28, 0.7) 3%, rgba(13, 13, 13, 0.7) 23%, rgba(21, 21, 38, 0.7) 64%, rgba(25, 25, 40, 0.7) 81%, rgba(60, 60, 60, 0.7) 97%, rgba(40, 37, 53, 0.7) 100%);

}

.menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 6px 8px;
    border-radius: 2px;
    transition: transform 0.2s ease, font-size 0.2s ease, background-color 0.2s ease;
}

.menu a.active {
    background-color: #2a2a33;
    color: #c3ff79;
}

.menu button {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-radius: 2px;
    line-height: 1.2;
    padding: 6px 8px;
    font: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, font-size 0.2s ease, background-color 0.2s ease;
}

.menu button {
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    border-radius: 2px;
    line-height: 1.2;
    padding: 6px 8px;
    font: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, font-size 0.2s ease, background-color 0.2s ease;
}

.menu a:hover,
.menu button:hover,
.menu button.active {
    transform: scale(1.04);
    font-size: 1.02em;
    background-color: #2a2a33;
}

.body-panel {
    padding: 14px;
    box-sizing: border-box;
}

.body-frame {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #202024;
    display: block;
}

.iframe-page-shell {
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #1f1f24;
    color: #ffffff;
}

.iframe-page-card{
    width: 100%;
    flex: 1 1 auto;
    box-sizing: border-box;
    padding: 14px;
    background: #222228;
    font-family: "Special Elite", system-ui;
}

.news {
    color: #ccc565;
    border: 2px solid #a8a02c;
    padding: 5px 10px;
}

.panel-card {
    background: #23232d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    color: #fff;
    box-sizing: border-box;
}

.panel-card h1,
.panel-card h2 {
    margin-top: 0;
    margin-bottom: 8px;
    font-family: "Special Elite", system-ui;
}

.panel-card p {
    color: #e8e8ef;
    font-family: "Special Elite", system-ui;
    line-height: 1.45;
}

.panel-note {
    color: #ffd9a0 !important;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.panel-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-shell {
    width: 80%;
    box-sizing: border-box;
    color: #ffffff;
}

.gallery-panel {
    background: #222228;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    box-sizing: border-box;
}

.gallery-intro h1 {
    margin: 0 0 6px;
    font-family: "Special Elite", system-ui;
    font-size: 2rem;
}

.gallery-intro p {
    margin: 0 0 14px;
    color: #e7e7ef;
    font-family: "Special Elite", system-ui;
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.gallery-folder {
    background: none;
    overflow: hidden;
    margin-bottom: 10px;
}

.gallery-folder summary {
    list-style: none;
    cursor: pointer;
    padding: 10px 14px;
    font-family: "Special Elite", system-ui;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
}

.gallery-folder summary::after {
    content: '▾';
    font-size: 0.9rem;
    color: #ffd9a0;
}

.gallery-folder[open] summary::after {
    content: '▴';
}

.gallery-folder summary::-webkit-details-marker {
    display: none;
}

.gallery-folder .gallery-grid {
    padding: 10px;
}

.tab-button {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, #2a2a35 0%, #21212a 100%);
    color: #ffffff;
    padding: 8px 10px;
    font-family: "Special Elite", system-ui;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.tab-button.active,
.tab-button:hover {
    background: linear-gradient(180deg, #3a3a47 0%, #2e2e39 100%);
    color: #fff7d6;
    border-color: rgba(255, 255, 255, 0.24);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gallery-card {
    background: #26262d;
    
    padding: 0px;
    box-sizing: border-box;
}

.gallery-card .project-card summary {
    list-style: none;
    cursor: pointer;
}

.project-card summary::-webkit-details-marker {
    display: none;
}

.project-summary {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
    align-items: center;
}

.project-summary img {
    width: 92px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-summary strong,
.project-summary small {
    display: block;
    color: #fff;
    font-family: "Special Elite", system-ui;
}

.project-summary small {
    color: #d8d8e6;
    font-size: 0.82rem;
}

.project-panel {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-panel p {
    margin: 0 0 8px;
    color: #e6e6ee;
    font-family: "Special Elite", system-ui;
    font-size: 0.92rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 8px;
}

.project-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.art-template {
    display: grid;
    gap: 14px;
}

.art-category-card {
    background: linear-gradient(180deg, #2b2b33 0%, #23232a 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.art-category-card h3 {
    margin: 0 0 6px;
    font-family: "Special Elite", system-ui;
    font-size: 1.08rem;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.art-category-card p {
    margin: 0 0 8px;
    color: #f1f1f7;
    font-family: "Special Elite", system-ui;
    font-size: 0.94rem;
    line-height: 1.35;
}

.art-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
}

.art-slide {
    flex: 0 0 180px;
    background: #1f1f26;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px;
    box-sizing: border-box;
    scroll-snap-align: start;
}

.art-slide img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    display: block;
    background: #18181f;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.art-slide figcaption {
    margin-top: 6px;
    color: #f0f0f5;
    font-family: "Special Elite", system-ui;
    font-size: 0.85rem;
    line-height: 1.3;
}

#zoom-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(7, 7, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 18px;
}

#zoom-overlay.open {
    display: flex;
}

.zoom-layout {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 90vw;
    max-height: 90vh;
}

.zoom-img-wrapper {
    max-width: 70vw;
    max-height: 85vh;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    cursor: zoom-in;
    position: relative;
    background: #18181f;
}

.zoom-img-wrapper.is-zoomed {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    z-index: 999;
    background: rgba(7, 7, 10, 0.95);
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.zoom-img-wrapper img {
    max-width: 70vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-img-wrapper.is-zoomed img {
    max-width: 100vw;
    max-height: 100vh;
}

.zoom-img-wrapper img.is-zoomed {
    transform: scale(2.5);
    cursor: zoom-out;
}

.zoom-info {
    align-self: flex-end;
    padding-bottom: 8px;
    max-width: 320px;
    width: 100%;
}

.zoom-info dl {
    margin: 0;
}

.zoom-info dt {
    font-family: "Special Elite", system-ui;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
}

.zoom-info dt:first-child {
    margin-top: 0;
}

.zoom-info dd {
    margin: 4px 0 0;
    font-family: "Special Elite", system-ui;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    text-align: justify;
}

.zoom-close {
    position: absolute;
    top: 14px;
    right: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(35, 35, 45, 0.6);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    width: 36px;
    height: 36px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.gallery-card img,
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    image-rendering: auto;
}

.gallery-placeholder {
    display: grid;
    place-items: center;
    background: #2b2c35;
    color: #ffffff;
    font-family: "Special Elite", system-ui;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

.gallery-card h3 {
    margin: 8px 0 4px;
    font-family: "Special Elite", system-ui;
    font-size: 1rem;
}

.gallery-card:hover {
    transform: scale(1.03);

}

.gallery-card p {
    margin: 0;
    color: #e6e6ee;
    font-family: "Special Elite", system-ui;
    font-size: 0.92rem;
}

/* fonts */
.special-elite-regular {
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Orange Kid';
    src: url('fonts/Orange Kid.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nerdopol Lattice';
    src: url('fonts/nerdropol lattice.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Custom scrollbar — discrete gray */
* {
    scrollbar-width: thin;
    scrollbar-color: #3a3a42 transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #3a3a42;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile Responsiveness Styles */
@media (max-width: 768px) {
    /* Main page viewport and scroll reset */
    body:not(.iframe-page) {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 10px 0 0;
    }

    /* Container width optimizations */
    .banner,
    .content-row {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

    .banner {
        margin-bottom: 12px;
    }

    /* Banner design adjustment for narrow screens */
    .banner-card {
        aspect-ratio: auto;
        min-height: 75px;
    }

    .banner-content {
        position: relative;
        padding: 8px 12px;
        gap: 12px;
    }

    .banner-icon {
        width: 48px;
    }

    .banner-copy h2 {
        font-size: 1.8rem;
    }

    .banner-sub {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    /* Row layout to vertical stack */
    .content-row {
        flex-direction: column;
        height: auto;
        overflow: visible;
        gap: 12px;
    }

    .body-block {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    /* Wrap menu elements onto multiple rows nicely */
    .menu {
        height: auto;
        flex-wrap: wrap;
        padding: 8px 6px;
        gap: 6px 12px;
        justify-content: center;
    }

    .menu a,
    .menu button {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Set stable heights for the iframe */
    .body-frame {
        height: 65vh;
        min-height: 460px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Stack sidebar below content, set wide */
    .side-column {
        width: 100%;
        height: auto;
        overflow: visible;
        margin-top: 6px;
        gap: 12px;
        padding-bottom: 20px;
    }

    /* Layout web buttons / Neocities badges horizontally */
    .button-grid {
        grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
        justify-items: center;
        gap: 3px;
        padding: 3px;
    }

    /* Iframe page specific inner layouts */
    body.iframe-page {
        height: auto;
        min-height: 100%;
        overflow-y: auto;
    }

    .iframe-page-card {

        padding: 10px;
    }

    .gallery-panel {
        padding: 10px;
    }

    /* 2 columns gallery layout on mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }

    /* Responsive lightbox image zoom overlay */
    .zoom-layout {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 10px;
    }

    .zoom-img-wrapper {
        max-width: 95vw;
        max-height: 50vh;
        width: auto;
        height: auto;
    }

    .zoom-img-wrapper img {
        max-width: 95vw;
        max-height: 50vh;
    }

    .zoom-img-wrapper.is-zoomed img {
        max-width: 100vw;
        max-height: 100vh;
    }

    .zoom-info {
        align-self: center;
        width: 100%;
        max-width: 280px;
        padding: 8px;
        box-sizing: border-box;
    }

    .zoom-info dl {
        display: grid;
        grid-template-columns: max-content 1fr;
        gap: 6px 12px;
        align-items: baseline;
    }

    .zoom-info dt {
        margin-top: 0;
        text-align: right;
    }

    .zoom-info dd {
        margin: 0;
    }
}

/* Floating Controls */
.floating-controls {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 2000;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: "Special Elite", system-ui;
}

.info-container {
    position: relative;
}

.info-button,
.youtube-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1B1B24;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffd9a0;
    font-family: "Special Elite", system-ui;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    padding: 0;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
}

.info-button:hover,
.info-button:focus-visible,
.youtube-button:hover,
.youtube-button:focus-visible {
    background: #ffd9a0;
    color: #181717;
    border-color: #ffd9a0;
    transform: scale(1.1);
    outline: none;
}

.info-tooltip {
    position: absolute;
    bottom: 42px;
    left: 0;
    background: #1B1B24;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    width: 260px;
    color: #f1f1f7;
    font-size: 0.85rem;
    line-height: 1.5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
}

.info-tooltip p {
    margin: 0 0 8px;
}

.info-tooltip p:last-child {
    margin-bottom: 0;
}

.info-tooltip a {
    color: #c3ff79;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.info-tooltip a:hover {
    color: #a4ff3b;
}

.info-container:hover .info-tooltip,
.info-container.active .info-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .floating-controls {
        bottom: 15px;
        left: 15px;
        gap: 8px;
    }
    .info-tooltip {
        width: 220px;
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}
.iosevka-charon-light {
  font-family: "Iosevka Charon", monospace;
  font-weight: 300;
  font-style: normal;
}

.iosevka-charon-regular {
  font-family: "Iosevka Charon", monospace;
  font-weight: 400;
  font-style: normal;
}

.iosevka-charon-medium {
  font-family: "Iosevka Charon", monospace;
  font-weight: 500;
  font-style: normal;
}

.iosevka-charon-bold {
  font-family: "Iosevka Charon", monospace;
  font-weight: 700;
  font-style: normal;
}

.iosevka-charon-light-italic {
  font-family: "Iosevka Charon", monospace;
  font-weight: 300;
  font-style: italic;
}

.iosevka-charon-regular-italic {
  font-family: "Iosevka Charon", monospace;
  font-weight: 400;
  font-style: italic;
}

.iosevka-charon-medium-italic {
  font-family: "Iosevka Charon", monospace;
  font-weight: 500;
  font-style: italic;
}

.iosevka-charon-bold-italic {
  font-family: "Iosevka Charon", monospace;
  font-weight: 700;
  font-style: italic;
}
