


:root {
    --font-small: 16px;
    --font-medium: 24px;
    --font-large: 36px;
    --font-very-large: 48px;
    --project-button-transition-time: 0.2s;
}

@property --interface-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #1d1d1d;
}

@property --background-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #0b0b0b;
}

@property --button-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #121212;
}

@property --button-hover-color {
    syntax: "<color>";
    inherits: false;
    initial-value: #252144;
}



@property --gradient-color-dark {
    syntax: "<color>";
    inherits: false;
    initial-value: #160973;
}

@property --gradient-color-light {
    syntax: "<color>";
    inherits: false;
    initial-value: #61d1f2;
}

@property --interface-border-color {

    syntax: "<color>";
    inherits: false;
    initial-value: #5d5d5d;

}

.flex-columns {

    display: flex;
    flex-direction: row;

}

.subtext {
    color: rgb(128 128 128);
}

.flex-rows {

    display: flex;
    flex-direction: column;

}

.fit-in-parent {

width: 100%;

height: 100%;

object-fit: contain;

display: block;
}

.center-containers {

    margin-left: 10rem;
    margin-right: 10rem;

}

.project-item-image {

    width: 105px;
    height: 105px;
    margin-right: 15px;

}

.flex-do-wrap {
    flex-wrap: wrap;
}

.no-text-wrap {
    white-space: nowrap;
}

.project-item-block {
    display: inline-block;
    width: 100%;
}



.project-item-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    transform: translateY(0px);
    transition: transform var(--project-button-transition-time) ease-out;
}


.project-arrow {
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 20px;
    color: #ffffff00;
    transition:
        color var(--project-button-transition-time) ease-in-out,
        margin-right var(--project-button-transition-time) ease-out
    ;
}

.project-item:hover .project-item-innards .project-arrow {
    color: #ffffffff;
    margin-right: 10px;
}

.project-item-wrapper:hover {
    transform: translateY(-5px);
}

.project-item {
    padding: 10px;
    border-style: solid;
    border-width: 0px;
    border-bottom-width: 5px;
    border-image: linear-gradient(
        to left,
        var(--gradient-color-light),
        var(--gradient-color-dark)
    ) 1;

    background-image:
        linear-gradient(
            to left,
            color-mix( in srgb, var(--gradient-color-light) 40%, var(--interface-color)),
            color-mix( in srgb, var(--gradient-color-dark) 60%, var(--interface-color))
        )
    ;

    position: relative;
    margin-top: 1.5rem;
}

.project-item::before {
    content: '';
    position: absolute;
    inset: 0px;
    background-image: linear-gradient(
            to left,
            color-mix( in srgb, var(--gradient-color-light) 80%, var(--interface-color)),
            color-mix( in srgb, var(--gradient-color-dark) 80%, var(--interface-color))
    );
    width: 0px;
    transition: width var(--project-button-transition-time) ease-out;
}


.project-item:hover::before {
    width: 100%;
}

.project-item-innards {
    position:relative;
    z-index: 1;
}

.fix-text-project-image {
    transform: translateY(-7px);
}

.center-justify {
    justify-content: center;
}

.align-down {

    margin-top: auto;

}

.project-tag-image {

    width: 24px;
    height: 24px;
    margin-right: 6px;

}

@property --gradient-angle-checkbox {
    syntax: '<angle>';
    inherits: false;
    initial-value: 45deg;
}


.tag-checkbox {
    position:relative;
    appearance: none;
    min-width: 24px;
    min-height: 24px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 18px;
    background-color: var(--button-color);
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);

    transition: --gradient-angle-checkbox ease-out 0.75s;
    cursor: pointer;
    position: relative;
    justify-content: center;
    align-items:center;
    z-index: 1;
}

.tag-checkbox::after{
    content: '';
    position:absolute;
    align-items:center;
    inset: 6px;
    background-color: color-mix(in srgb, var(--gradient-color-light) 60%, var(--gradient-color-dark));
    opacity: 0%;
    transition: opacity ease-out 0.1s;
}

.tag-checkbox:checked::after {
    opacity: 100%;
}



.tag-checkbox:checked {
    --gradient-angle-checkbox: 315deg;
}

.tag-image {

    min-width: 40px;
    min-height: 40px;
    width: 40px;
    height: 40px;
    margin-right: 8px;

}

.small-font {
    font-size: var(--font-small) !important;
}

.medium-font {
    font-size: var(--font-medium) !important;
}

.large-font {
    font-size: var(--font-large) !important;
}

.very-large-font {
    font-size: var(--font-very-large) !important;
}

body {
    min-width: fit-content;
    font-family: 'Manrope', sans-serif;
    background-color: var(--background-color);
    position: relative;
}


.grid-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
}




.hover-over-item {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hover-over-item:hover {
    transform: scale(1.025);
}

.glowing-vertical {
    position: relative
}

.black-shadow {

    box-shadow:
        0 0 8px black,
        0 0 16px black
        ;

}

.glowing-vertical::before {
    content: '';
    position: absolute;
    inset: -2.5px;
    background: linear-gradient(to top, transparent, red, purple, transparent);
    transform-origin: center;
    border-radius: inherit;
    pointer-events: none;

}


.glowing-horizontal {
    position: relative
}

.glowing-horizontal::before {

    content: '';
    position: absolute;
    inset: -2.5px;
    z-index: -1;
    background: linear-gradient(to left, transparent, red, purple, transparent);
    transform-origin: center;
    border-radius: inherit;
    pointer-events: none;

}

.center-horizontally {
    align-items:center;
}

.center-vertically {
    justify-content: center;
}

.glowing-hover {
    position:relative;
}

.glowing-hover::before {
    content: '';
    position: absolute;
    inset: -2.5px;
    z-index: -1;
    background: linear-gradient(to left, transparent, red, purple, transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    border-radius: inherit;
    pointer-events: none;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.glowing-hover:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

#filterOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none; /* hidden by default */
}

/* Sidebar sliding panel */
#filterSidebar {
    position: fixed;
    top: 0;
    right: -300px; /* hidden offscreen initially */
    width: 300px;
    height: 100%;
    background-color: #111;
    padding: 20px;
    box-shadow: -4px 0 12px rgba(0,0,0,0.7);
    z-index: 1050;
    transition: right 0.3s ease;
}

#filterArrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Open state */
#filterSidebar.open {
    right: 0;
}

/* Rotate only the arrow inside the toggle button */
#filterToggle.open #filterArrow {
    transform: rotate(180deg);
}

#filterToggle.close #filterArrow {
    transform: rotate(0deg);
}


@property --btn-transparency-percent {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 100%;
}


.header-btn {
    background-color: var(--button-color);

    background-image: linear-gradient(to top,transparent var(--btn-transparency-percent), var(--gradient-color-light) 1%, var(--gradient-color-dark));

    color: white;
    border: solid;
    border-left: 0.2rem solid transparent;
    border-right: 0.2rem solid transparent;
    border-top-width: 0px;
    border-bottom-width: 1px;

    border-image: linear-gradient(to top, var(--gradient-color-light), var(--gradient-color-dark)) 1;
    border-image-slice: 1;
    border-radius: 0;
    transition:
        --btn-transparency-percent 0.5s cubic-bezier(0, 0, 0, 0.98)
        ;
}

.header-btn[has-right-border="false"] {
     border-right: 0rem;
}

.header-btn:hover {
    --btn-transparency-percent: 0%;
}

/*==My scrolling carousel==*/
.fdscrollingtrack {
    display: flex;
    /* animation: scroll 40s linear infinite;  adjust speed as needed */
}


.carousel-item {
    display: flex;           /* or inline-block */
    align-items: center;
    justify-content: center;
    width: 25rem;            /* match image width */
    height: 25rem;           /* match image height */
    transition: transform 0.5s;
    position: relative;
}

.img-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;          /* Clips the blurred image */
    position: relative;
}

.img-wrap::before {
    content:'';
    inset: 0;
    position: absolute;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out;
}


.img-wrap:hover::before {
    background-color: #000000cc;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* Ensures the image fills the wrapper */
    transition: filter 0.5s;
}


.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;               /* above the darkening overlay */
    pointer-events: none;      /* so clicks pass through to the link */
}

.overlay-text .project-name {
    display: block;
    font-weight: 800;
    font-size: var(--font-large);
    margin-bottom: 0.75rem;
    transform: translateY(-20px);
    opacity: 0;
    line-height: 3rem;
    transition: opacity 0.3s ease-in-out,
        transform 0.5s cubic-bezier(0, 0, 0.02, 0.91)
    ;
}

.overlay-text .project-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    font-size: var(--font-medium);
    padding-bottom: 0.25rem;
    transform: translateY(-20px);
    opacity: 0;
    text-wrap: nowrap;
    transition: opacity 0.3s ease-in-out 0.1s,
        transform 0.5s cubic-bezier(0, 0, 0.02, 0.91) 0.1s
    ;
}

.img-wrap:hover .overlay-text .project-name {
    opacity: 1;
    transform: translateY(0);
}

.img-wrap:hover .overlay-text .project-link {
    opacity: 1;
    transform: translateY(0);
}



.carousel-item:hover{
    transform: scale(1.025);
}

@property --gradient-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 45deg;
}

.carousel-item::before {
    position: absolute;
    content: '';
    inset: -0.25rem;
    z-index: -1;
    opacity: 0;
    background-image: conic-gradient(from var(--gradient-angle),var(--gradient-color-light), var(--gradient-color-dark), var(--gradient-color-light), var(--gradient-color-dark), var(--gradient-color-light));
    transition: opacity 0.5s, --gradient-angle 2s;
}

.carousel-item:hover::before {
    opacity: 1;
    --gradient-angle: 405deg;
}


.carousel-item-link-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.carousel-item-link {
    display: block;
    margin-right: 2.5rem;
    text-decoration: none;
}

.scrolling-carousel-wrapper {
    position: relative;
    height: 400px;
}

.scrolling-carousel {
    position: absolute !important;
    width: 100%;
    overflow: hidden;
    background-color: var(--background-color);
    padding: 3rem 0;
}

.scrolling-track {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}





@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.fade-edges {
    position: relative;
}

.fade-edges::before,
.fade-edges::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px; /* width of fade zone */
    pointer-events: none; /* allows clicking through to links */
    z-index: 2;
}

.fade-edges::before {
    left: 0;
    background: linear-gradient(to right, #111, transparent);
}

.fade-edges::after {
    right: 0;
    background: linear-gradient(to left, #111, transparent);
}

#about-box {
    background-color: #1e1e1e;
    border: none;
}



footer {
    margin-top: 2rem;
    width: 100%;

}

.fd-input-field-wrapper {
    position:relative;
    margin: 2px 0px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
}

.fd-input-field-wrapper input[type="text"] {
    width: 100%;
    position:relative;
    background-color: var(--button-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color:white;
    outline: none;
    border: none;
    z-index: 1;
}

.fd-input-field-wrapper input[type="submit"] {
    width: 100%;
    position:relative;
    background-color: var(--button-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color:white;
    outline: none;
    border: none;
    z-index: 1;
    transition: background-color 0.2s ease-out;
}

.fd-input-field-wrapper input[type="submit"]:hover {
    background-color: var(--button-hover-color);
}

.fd-input-field-wrapper input[type="password"] {
    width: 100%;
    position:relative;
    background-color: var(--button-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color:white;
    outline: none;
    border: none;
    z-index: 1;
}


.fd-input-field-wrapper input[type="number"] {
    position:relative;
    background-color: var(--button-color);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color:white;
    outline: none;
    border: none;
    z-index: 1;
    justify-content:center;
    align-items: center;
}

.fd-input-field-wrapper input[type="number"]::-webkit-outer-spin-button,
.fd-input-field-wrapper input[type="number"]::-webkit-inner-spin-button {

    -webkit-appearance: none;
    margin: 0;

}


.fd-button-wrapper {
    width: 100%;
    margin: 2px;
    position: relative;
    z-index: 0;
    margin: 2px 0px;
}

.fd-button-wrapper button {

    align-items: center;
    justify-content: center;
    display: flex;

    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
    background-color: var(--button-color);
    color: white;
    transition: background-color 0.25s;
}

.fd-button-wrapper a {

    align-items: center;
    justify-content: center;
    display: flex;

    user-select: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
    background-color: var(--button-color);
    color: white;
    transition: background-color 0.25s;
}

.fd-button-wrapper button:hover{
    background-color: var(--button-hover-color);
}

.fd-button-wrapper a:hover{
    background-color: var(--button-hover-color);
}


.fd-combo-box {
    position: relative;
    width: 100%;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
    background-color: var(--button-color);
    z-index: 1;
}



.fd-combo-box-selected {
    display: flex;
    flex-direction: row;
    cursor:pointer;
    padding: 0.5rem;
    background-color: var(--button-color);
    transition: background-color 0.2s;
}


.fd-combo-box-selected:hover {
    background-color: var(--button-hover-color);
}



.fd-combo-box.fd-combo-box-opened .fd-combo-box-elements {

    display: block;

    background-color: var(--button-color);
    width: inherit;

    position:absolute;
    z-index: 1;

    max-height: 150px;

    overflow-y: auto;
    opacity: 1;

    user-select: none;
    transition: max-height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.fd-combo-box .fd-combo-box-elements {

    opacity: 0;
    overflow: hidden;
    max-height: 0px;

}

.fd-combo-box.fd-combo-box-opened {
    z-index: 10;
}


.fd-combo-box-element {
    background-color:var(--button-color);
    position: relative;
    cursor: pointer;

    transition: background-color 0.2s;
}




.fd-combo-box-element:hover {
    background-color: var(--button-hover-color);
}

.fd-combo-box-element-innards {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.fd-combo-box-selected-text {
    user-select: none;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fd-combo-box-selected-arrow {
    user-select: none;

    display:flex;
    flex-shrink: 0;
    height: auto;
    width: 24px;
    font-size: 18px;
    justify-content: center;
    align-items: center;
    rotate: 90deg;
    transition: rotate 0.2s ease-in-out;
}

.fd-combo-box.fd-combo-box-opened .fd-combo-box-selected-arrow {
    rotate: -90deg;
}

.fd-combo-box-elements::-webkit-scrollbar {
    width: 4px;

}

.fd-combo-box-elements::-webkit-scrollbar-track {
    background: var(--interface-border-color);

}

.fd-combo-box-elements::-webkit-scrollbar-thumb {
    background: var(--gradient-color-light);
}

.fd-combo-box-elements::-webkit-scrollbar-thumb:hover {
    background: var(--interface-border-color);
}

.fd-category {
    padding-left: 5px;
    background: #141414;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
    width: 100%;
    align-items: center;
}

.fd-category-text {
        user-select: none;
        white-space: nowrap;
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
}

.fd-delete-category {
        translate: 1px ;
        background: red;
        color: white;
        user-select: none;
        display:flex;
        flex-shrink: 0;
        height: auto;
        width: 24px;
        font-size: 18px;
        justify-content: center;
        align-items: center;
        cursor: pointer;
}

.fd-error-text {
    color: red;
    display:none;
}

.fd-tag-taglist {
    background: #141414;
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 5px;

}

.fd-tag-taglist-image {
    width: 32px;
    height: 32px;
    margin-right: 5px;
}

.image_drop_area {
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
}

.dropped_image {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px;
    border-style: dashed;
    border-color: var(--interface-border-color);


    transform: scale(1);
    transition: border-color 0.2s, transform 0.2s;
}

.dropped_image.dragged-over {

    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 2px;
    border-style: dashed;
    border-color: var(--gradient-color-light);

    transform: scale(1.05);

}


.dropped_image_component {
    width: 32px;
    height: 32px;
}

.project-logo {
    width: 100%;
}


.project-name-project-page {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: black;
    margin-bottom: 15px;
    min-height: 50px;
    padding: 6px;
}

.center-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-line {
    width: 2px;
    align-self: stretch;
    background-color: #242424;
    margin: 0 4px;
    flex-shrink: 0;
}



.header-button-container {
        display: flex;
        position: absolute;
        width: fit-content;
        justify-content: center;
        height: 100%;
        pointer-events: none;
        width: 100%;
}

.header-button-side-container {
    display: none;
}

.filter-button-side-container {
    display: none;
}

.fading-box {

    position: fixed;
    background-color: #00000000;
    width: 100%;
    height: 100%;
    z-index: 5000;
    pointer-events: none;

    transition: background-color 0.2s cubic-bezier(0, 0, 0.02, 0.99);

}

.fading-box.opened {

    background-color: #000000ad;
    pointer-events: all;

}
.header-side-opener {
    display: none;
}

.header-side-opener-box {
    display: flex;
    cursor: pointer;
    flex-direction: column;
    justify-content:space-around;
    width: 32px;
    height: 32px;
    align-self: stretch;
}

.header-side-opener-stick {
    align-self: stretch;
    background-color:white;
    width: 100%;
    height: 3px;
    transition: transform 0.2s;
}

.header-side-opener-stick[delay="1"] {
    transition: transform 0.4s;
}

.header-side-opener-stick[delay="2"] {
    transition: transform 0.6s;
}

.header-buttons {
    display: none;
}


@media(min-width: 1000px) {

    .header-buttons {
        display: flex;
        flex-direction: row;
    }

}

@media(max-width: 1000px){

    .header-button-container {
        display: none;
    }

    .header-side-opener {
        display: flex;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
    }

    .header-side-opener.opened .header-side-opener-stick {
        transform: rotate(180deg);
    }

    .header-button-side-container {

        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        right: 0;
        translate: 0px;
        height: 100%;
        width: 100%;
        max-width: 400px;
        translate: 101%;
        border-style: solid;
        border-top-width: 0px;
        border-bottom-width: 0px;
        border-right-width: 0px;
        border-left-width: 1px;
        border-color: var(--interface-border-color);
        transition: translate 0.5s cubic-bezier(0, 0, 0.02, 0.99);

}


    .header-button-side-container.opened {

        translate: 0%;

    }

}

.header-button-container .header-btn {

    pointer-events: all;

}


.side-button {

    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: var(--button-color);
    overflow-x:clip;
    text-decoration: none;
    color: white;
    transition: background 0.2s;

    border-style: solid;
    border-width: 1px 0px 1px 0px;
    border-color: var(--interface-border-color);


}

.side-button:hover {

    background: var(--button-hover-color);

}


.header-side-container-close-button {
    cursor: pointer;
}

.width-filler {
    width: 100%;
    align-self: stretch;
}

.navigation-side-tab-text {

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;

}

.all-projects-tags {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-right: 8px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 16px;
}

.all-projects-tags-side {
    display: flex;
    flex-direction: column;
    width: 400px;
    margin-right: 8px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 16px;
}


.side-filters-button {
    display: none;
}


@media(max-width: 1200px) {

    .side-filters-button {
        display: flex;
    }



    .filter-button-side-container {

        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        right: 0;
        translate: 0px;
        height: 100%;
        width: 100%;
        max-width: 400px;
        translate: 101%;
        border-style: solid;
        border-top-width: 0px;
        border-bottom-width: 0px;
        border-right-width: 0px;
        border-left-width: 1px;
        border-color: var(--interface-border-color);
        transition: translate 0.5s cubic-bezier(0, 0, 0.02, 0.99);

    }


    .filter-button-side-container.opened {

        translate: 0%;

    }

}

@media(max-width: 1200px) {

    .all-projects-tags {

        display: none;

    }

}


.all-projects-projects {
    display: flex;
    flex-direction: column;
    min-width: 800px;
    max-width: 1000px;
    height: 100%;
    flex-grow: 1;
}

.interface {
    background-color: var(--interface-color);
}

.interface-border {
    background-color: var(--interface-color);
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    border-image: linear-gradient(to bottom, var(--gradient-color-light), var(--gradient-color-dark)) 1;
}

.interface-border[right="true"] {

    border-width: 0px 4px 0px 0px;
    border-image: linear-gradient(to bottom, var(--gradient-color-light), var(--gradient-color-dark)) 1;

}

.header-container {

    display: flex;
    flex-direction: row;
    max-width: 1350px;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    padding: 8px;

}

.header-logo {

    display: flex;
    flex-shrink: 0;
    height: 80px;


    text-decoration: none;
    color: white;

    font-size: var(--font-large);
    align-items: center;
    text-wrap: nowrap;


}

.header-logo-img {

    width: 100px;
    height: 50px;

    background-image: linear-gradient(214deg,
                                     white 1%,
                                      var(--gradient-color-light),
                                      color-mix(var(--gradient-color-light), var(--gradient-color-dark)) 80%
                                     );
    mask-image: url("/imgs/fdprojectslogo.webp");
    mask-size: 100% 100%;

}





.header-button {

    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    opacity: 50%;
    background-color: var(--interface-color);
    padding: 1rem;

    text-wrap: nowrap;

    transition: opacity 0.2s ease-out, background-color 0.2s ease-out;

}


.header-button:hover {
    opacity: 100%;
}

.interface-header {
    background-color: var(--interface-color);
    width: 100%;
    box-shadow: 0 0 12px black;


    /* border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-image: linear-gradient(to top, var(--gradient-color-light), var(--gradient-color-dark) ) 1;
 */
}


.interface-footer {
    background-color: var(--interface-color);
    /* border-style: solid;
    border-width: 4px 0px 0px 0px;
    border-image: linear-gradient(to bottom, var(--gradient-color-light), var(--gradient-color-dark) ) 1; */
    z-index: 1;
}

.all-projects-project-item {

    display: block;
    width: 100%;
    margin-top: 16px;
    text-decoration: none;
    color: white;
    transform: scale(1);
    background-color: var(--interface-color);
    transition: background-color 0.25s cubic-bezier(0, 0, 0.13, 1.01), transform 0.25s cubic-bezier(0, 0, 0.13, 1.01);

}

.all-projects-project-item:hover {

    transform: scale(1.01);
    background-color: color-mix( in srgb, var(--gradient-color-dark), var(--interface-color));

}

.all-projects-project-item-innards {

    width: 100%;
    display: flex;
    flex-direction: column;

}

.all-projects-project-item-border {

    width: 100%;
    height: 100%;
    display: flex;
    border-style: solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-right-width: 1px;
    border-left-width: 0px;
    border-color: var(--interface-border-color);

}

.all-projects-project-item-image {

    margin-right: 16px;

}

.all-projects-project-item-image img{

    width: 96px;
    height: 96px;

}

.all-projects-project-item-tag-image {

    margin-right: 8px;

}

.all-projects-project-item-tag-image img{

    width: 32px;
    height: 32px;

}

.all-projects-project-item-tag {

    padding: 4px;
    display: flex;
    flex-direction: row;
    margin-right: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
    background-color: var(--button-color);

}

.circuit-edge[right="true"] {

    right: 0;
    transform: scale(-1, 1);

}

.circuit-edge {

    position: absolute;

    width: 78px;
    height: 100%;
    background-image:
        linear-gradient(to left,
                        var(--gradient-color-light),
                        white,
                        var(--gradient-color-light)),
                linear-gradient(to bottom,
                        white, #3333af, white);


    background-size: 200% 100%, 40px 400px;

    image-rendering: pixelated;

    background-blend-mode: multiply;

    mask-image: url("/imgs/circuit_like_edge2.png");
    mask-repeat: repeat, repeat;
    mask-size: 78px 144px;
    mask-position: 0px 10px;

    animation: gradientMove 5s linear infinite;
}


@keyframes gradientMove {

    from {
        background-position: 1000% 400px;
    }

    to {
        background-position: 0% 0px;
    }

}



.index-first-row {

    background-image: radial-gradient(ellipse at 20% 30%,
                                  var(--gradient-color-light),
                                  var(--gradient-color-dark) 80%);

    padding-bottom: 200px;
    padding-top: 50px;
}

.bg-website {
    background-color: var(--background-color);
}


.full-width{

    width: 100%;

}

.full-height {
    height: 100%;
}

.main-content-paddings {

    padding-left: 300px;
    padding-right: 300px;

}

.text-align-justify {
    text-align: justify;
}

.text-align-justify-right {
    text-align: justify;
    text-align-last: right;
}

.circuit-edge-padding-right {
    padding-right: 120px;
}

.circuit-edge-padding-left {
    padding-left: 120px;
}

.page-layout-block {

    display: flex;

    flex-direction: column;

    max-width: 1400px;

    min-width: 800px;

    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;

    width: 100%;

    flex-shrink: 0;

}

.contain-blocks-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.between-blocks-margin {
    margin-bottom: 100px;
}


.trapezoid-image-block {


    position: absolute;
    width: 600px;
    height: 100%;
    flex-shrink: 0;
    opacity: 90%;
    pointer-events: none;


}

.trapezoid-image {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.inward-gradient {
    box-shadow:
        inset 0 0 12px 0 var(--gradient-color-light),
        inset 0 0 36px 0 color-mix(var(--gradient-color-light), var(--gradient-color-dark)),
        inset 0 0 64px 0 var(--gradient-color-dark);
}

.backgrounded-interface {
    background-color: color-mix(var(--background-color), var(--interface-color));
}

.pretty-fd-button {

    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    height: fit-content;
    padding: 1rem;
    background-color: var(--button-color);
    text-decoration: none;
    color: white;
    border-style: solid;
    border-width: 4px;
    text-wrap: nowrap;
    border-image: conic-gradient(from
        130deg,
        color-mix(var(--gradient-color-light),
        var(--gradient-color-dark)),
        var(--gradient-color-light),
        white 20%,
        var(--gradient-color-light),
        color-mix(var(--gradient-color-light),
        var(--gradient-color-dark))) 1;

    transition: background-color 0.2s ease-out;

}

.pretty-fd-button:hover {
    background-color: var(--button-hover-color);
}

.only-text-button {

    cursor: pointer;
    opacity: 50%;

}

.only-text-button:hover {

    opacity: 100%;

}

.project-page-description-container {

    display: flex;
    flex-direction: column;

    padding: 1rem 3rem;

    width: 100%;
    min-width: 800px;
    overflow-wrap: break-word;

}

.project-page-project-tag {

    background-color: var(--button-color);
    display: flex;
    text-wrap: nowrap;
    padding: 6px;
    border-style: solid;
    border-width: 1px;
    border-color: var(--interface-border-color);
    justify-content: center;
    align-items: center;

}

.space-around-container {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px;

}

.space-around-container-big-gap {

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;

}

.social-with-arrow {
    align-items: center;
    text-decoration: none;
    color: white;
    opacity: 70%;
    transition: opacity 0.2s ease-out;
}

.social-with-arrow:hover{

    opacity: 100%;
}

.social-with-arrow .social-arrow {
    height: fit-content;
    translate: 0px;
    transition: translate 0.2s ease-out;
}

.social-with-arrow:hover .social-arrow {
    translate: 4px;
}