
:root {
    --midnight: #07070e;
    --deep-blue: #0a0f1a;
    --accent: #2d5f9e;
    --accent-dim: #1a3a5e;
    --text: #fbfdff;
    --text-dim: #6b727a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--midnight);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}


.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

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

.title {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1.25rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 0.55rem; /* this is the stupid spacing that is never consistent */
    color: var(--text);
    position: relative;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.2), 0 0 40px rgba(74, 158, 255, 0.1);
}

.subtitle {
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: #eef6ff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


        .work-section {
            margin-top: 3rem;
            font-size: 0.75rem;
            color: var(--text-dim);
        }

        .work-label {
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
            opacity: 0.5;
            font-size: 0.7rem;
        }

        .work-items {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: center;
        }

        .work-item {
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .work-item:hover {
            opacity: 1;
        }


