section.hero {
    height: 100dvh;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 150px !important;

    background-color: #000; /* base black */

    background-image:
            linear-gradient(#222 1px, transparent 1px),
            linear-gradient(to right, #222 1px, #000 1px);
    background-size: 50px 50px;

    background-attachment: fixed;

}

section .intro {
    width: min-content;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;
}

section.hero .intro h1 {
    width: max-content;
    font-size: clamp(50px, 14vw, 100px);

    line-height: .8;
    z-index: 1;

    margin-bottom: 15px;

}

section.hero .intro em {
    font-weight: bold;
    color: var(--accent-light) !important;
}

section.hero .intro p {
    line-height: 1;

    z-index: 2;
    font-size: clamp(10px, 18px, 30px);

    color: var(--text-secondary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

section.hero img.rust {
    position: absolute;
    z-index: -1;

    bottom: 0;
    right: clamp(5px, 10vw, 400px);

    width: 800px;
    max-width: calc(100vw - clamp(5px, 10vw, 400px));

    animation: fadeUp 0.7s ease both;
    animation-delay: 0.1s;
}

@media screen and (max-width: 960px) {
    section.hero img.rust {
        right: unset;
        left: 50%;

        bottom: 30px;

        animation: pfpFadeUp 0.7s ease both;
        transform: translateX(-50%);
    }
}


/* ---------- Rustacean Section ---------- */
section.rustacean {
    position: relative;
    height: 100dvh;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 100px !important;
}

section.rustacean::before {
    content: "";

    position: absolute;
    z-index: 0;

    inset: 0 0 0 0;
    background: #000000;

    opacity: .4;
}

section.rustacean .content {
    width: min-content;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;
}

section.rustacean .content h2 {
    width: max-content;
    font-size: clamp(50px, 17vw, 150px);

    line-height: .8;
    z-index: 1;

    /*margin-bottom: 20px;*/
}

section.rustacean .content h2 em {
    font-weight: bold;
    color: var(--c-rust) !important;
}

section.rustacean .content p {
    line-height: 1;

    z-index: 2;
    font-size: clamp(10px, 4vw, 30px);

    color: var(--text-secondary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);

}

section.rustacean img.actix {
    pointer-events: auto;

    position: absolute;
    z-index: -1;

    bottom: 0;
    right: clamp(5px, 10vw, 400px);

    width: 800px;
    max-width: calc(100vw - clamp(5px, 10vw, 400px));

    animation: slowRotate 120s linear infinite;
}

section.rustacean img.actix:hover {
    animation-play-state: paused;
}

@keyframes slowRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media screen and (max-width: 960px) {
    section.rustacean img.actix {
        right: unset;
        left: 50%;

        bottom: 30px;

        animation: slowRotateC 120s linear infinite;
        transform: translateX(-50%);
    }
}

@keyframes slowRotateC { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }


















