
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    background-color: #000000;
    color: #e0e0e0;
    font-size: 16pt;

}

typingBlock{
    opacity: 0.5;
    animation: blink 4s infinite linear;
    white-space: normal;
    overflow: visible;
}

@keyframes blink {
    10% {
        opacity: 0;
    }
    20% {
        opacity: 0.5;
    }
    30% {
        opacity: 0;
    }
    40% {
        opacity: 0.5;
    }
    50% {
        opacity: 0;
    }
    60% {
        opacity: 0.5;
    }
    70% {
        opacity: 0;
    }
    80% {
        opacity: 0.5;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

.displayBanner{
    width: 99.4vw;
    height: 24px;
    padding: 6px;
    margin: auto auto;
    text-align: center;
    vertical-align: top;
    border-top: 1px solid var(--sh-green);
    border-bottom: 1px solid var(--sh-green);
}


.typeAnimSlow{
    display: inline-block;
    margin: auto auto;
    vertical-align: top;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    animation: fakeTyping 10s steps(150);
}

.typeAnimFast{
    display: inline-block;
    margin: auto auto;
    vertical-align: top;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    animation: fakeTyping 1000ms steps(50);
}

.typeAnimFastAfter{
    display: inline-block;
    margin: auto auto;
    vertical-align: top;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    animation: fakeTypingAfter 2000ms steps(50);
}

@keyframes fakeTyping {
    from {
        max-width: 0;
        opacity: 1;
    }
    to {
        max-width: 100%;
    }
}

@keyframes fakeTypingAfter {
    0%{
        max-width: 0;
        opacity: 1;
    }
    50%{
        max-width: 0;
        opacity: 1;
    }
    100%{
        max-width: 100%;
    }
}

h1 {
    font-size: 26pt;
}

h2 {
    font-size: 24pt;
}

h3 {
    font-size: 22pt;
}

h4 {
    font-size: 20pt;
}

.container {
    min-width: 969px;
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


header {
    background: linear-gradient(135deg, #000000, #000000);
    color: #e0e0e0;
    padding: 1rem 0;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--sh-green);
}

header h1 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

header nav ul li a:hover {
    color: var(--sh-green);
    border-bottom: 2px solid var(--sh-darkgreen);
}

#humantest{
    width: 0;
    height: 0;
}

#loading{
    display: none;
}

#loading:target{
    display: block;
}

.rotate-infinity {
    animation: rotate-infinity 2.5s linear infinite;
}

@keyframes rotate-infinity {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

main {
    margin-top: 0;
}

.tableList{
    position: relative;
    display: inline-block;
    max-height: 22vh;
    overflow-x: hidden;
    overflow-y: scroll;
    width: 32vw;
}


.section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    color: #e0e0e0;
    background-color: #1e1e1e;
    min-height: 100vh;
    transition: background 0.5s ease;
    border-top: 2px solid var(--sh-green);
}

.section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.section .content, .section .image {
    flex: 1;
    padding: 0 1rem;
}

.section .content {
    text-align: left;
    z-index: 2;
}

.right-aligned .content {
    order: 2;
}

.right-aligned .image {
    order: 1;
}

.left-aligned .content {
    order: 1;
}

.left-aligned .image {
    order: 2;
}

.gallery-grid {
    --delay: 0;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    grid-gap: 1rem;
    margin: auto auto;
    text-align: center;
}

.gallery-grid img {
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}


.text-outline {
    text-shadow:
            2px 0 black,
            0 -2px black,
            -2px 0 black,
            0 2px black;
}

::selection {
    color: #ffffff;
    background-color: var(--sh-magenta);
    text-shadow:
            2px 0 black,
            0 -2px black,
            -2px 0 black,
            0 2px black;
    font-weight: bold;
}

.zoom{
    --Zoom: 1.15;
    transition: transform 0.2s ease;
}

.zoom:hover{
    transform: scale(calc(var(--Zoom)));
}

a {
    color: var(--sh-green);
}

a:visited {
    color: var(--sh-magenta);
}

a:hover {
    color: var(--sh-magenta);
}

a:active {
    color: var(--sh-green);
}

.fakelinkbutton{
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    color: var(--sh-green);
    background-color: transparent;
    text-decoration: underline;
    transition: color 250ms linear;
}

.fakelinkbutton:hover{
    cursor: pointer;
    color: var(--sh-magenta);
    text-decoration: none;
}

.gradientOverlay{
    box-shadow: inset 0px 33px 25px 0 rgba(185, 185, 185, 0.10),
    inset 0 99px 5px 0px rgba(84, 84, 84, 0.10);
}

.primaryButton {
    width: 100px;
    height: 40px;
    color: white;
    cursor: pointer;
    background-color: var(--sh-darkgreenalt);
    font-weight: bold;
    border-radius: 10px;
    border-color: transparent;
    transition: background-color 250ms linear;
}

.primaryButton:hover {
    background-color: var(--sh-darkgreen);
}

.primaryAccentButton {
    width: 100px;
    height: 40px;
    color: white;
    background-color: var(--sh-darkgreen);
    font-weight: bold;
    transition: background-color 250ms linear;
}

.primaryAccentButton:hover {
    background-color: var(--sh-darkmagenta);
}

.accentButton {
    width: 200px;
    height: 40px;
    background-color: var(--sh-darkmagentaalt);
    color: white;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 250ms linear;
}

.accentButton:hover {
    background-color: var(--sh-darkmagenta);
    outline: 2px solid var(--sh-magenta);
}

.primaryButtonOutline {
    width: 100px;
    height: 40px;
    background-color: var(--sh-darkgreenalt);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-weight: bold;
    transition: outline-width 100ms linear, background-color 250ms linear;
}

.primaryButtonOutline:hover {
    background-color: var(--sh-darkgreen);
    outline: 2px solid var(--sh-green);
}

.accentButtonOutline {
    width: 100px;
    height: 40px;
    color: white;
    cursor: pointer;
    border-radius: 10px;
    border-color: transparent;
    background-color: var(--sh-darkmagentaalt);
    font-weight: bold;
    transition: outline-width 100ms linear, background-color 250ms linear;
}

.accentButtonOutline:hover {
    background-color: var(--sh-darkmagenta);
    outline: 2px solid var(--sh-lightmagenta);
}

.primaryAccentButtonOutline {
    width: 100px;
    height: 40px;
    cursor: pointer;
    background-color: var(--sh-darkgreen);
    color: white;
    border-radius: 10px;
    font-weight: bold;
    outline: 2px solid var(--sh-green);
    transition: outline-width 100ms linear, background-color 250ms linear;
}

.primaryAccentButtonOutline:hover {
    background-color: var(--sh-darkmagenta);
    outline: 2px solid var(--sh-lightmagenta);
}


.dashbutton-green {
    width: 100px;
    height: 40px;
    cursor: pointer;
    background-color: var(--sh-darkgreen);
    color: white;
    font-weight: bold;
    border: 2px solid;
    border-image-source: linear-gradient(125deg, var(--sh-green), var(--sh-darkgreen));
    border-image-slice: 1;
}

.dashbutton-green:hover {
    border: 2px solid var(--sh-green);
    border-image-source: linear-gradient(125deg, var(--sh-darkgreen), var(--sh-green));
    border-image-slice: 1;
}

.noBorder {
    outline: 0;
    border: 0;
}

.noBorder:focus {
    outline: 0;
    border: 0;
}

li {
    margin-top: 20px;
}

.box {
    padding: 40px;
    border: 2px solid var(--sh-green);
    min-height: 64px;
}

.box > img {
    height: 64px;
}

.gallery-grid img.fade-in {
    opacity: 1;
}

@keyframes slideInFromTop {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.continue{

}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

.gallery-grid img {
    animation: fadeIn 1s ease forwards;
    animation-delay: calc(var(--delay) * 1s);
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 1599px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    #title {
        display: none;
    }

    .content {
        margin-top: 0;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header nav ul li {
        margin: 0 0.5rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section p {
        font-size: 1rem;
    }

    footer p {
        font-size: 1rem;
    }

    .section .container {
        flex-direction: column;
        align-items: center;
    }

    .section .content, .section .image {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .section .container {
        flex-direction: column;
        align-items: center;
    }

    .section .content, .section .image {
        width: 100%;
        text-align: center;
    }

    img {
        height: 20vw;
    }

    header h1 {
        font-size: 1.2rem;
    }

    header nav ul li {
        margin: 0 0.3rem;
    }

    .section h2 {
        font-size: 1.2rem;
    }

    .section p {
        font-size: 0.9rem;
    }

    footer p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}