:root {
    --font-headline: 'Anton', 'Arial Black', 'Helvetica Bold', sans-serif;
    --font-body: 'Roboto Slab', 'Rockwell', 'Courier Bold', serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

/* Bold text in body */
strong, b {
    font-weight: 600;
}

#sineCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
}

.container {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    animation: fadeIn 1s ease-in;
}

.content-section {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.01em;
}

h1 {
    color: #212529;
    font-size: 4.5rem;
    line-height: 1.0;
    animation: fadeIn 1s ease-in;
    margin-bottom: 0.5rem;
}

h2 {
    color: #212529;
    font-size: 2.5rem;
    line-height: 1.15;
    animation: fadeIn 1s ease-in 0.2s both;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.75rem;
    line-height: 1.2;
}



.bio {
    color: #495057;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 1.5rem;
    animation: fadeIn 1s ease-in 0.4s both;
}

/* Links */
a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

a:hover {
    text-decoration-thickness: 2px;
}

.bio a {
    color: #212529;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
    }

    .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .profile-image {
        width: 120px;
        height: 120px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .bio {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.375rem;
    }
}

/* Footer styles */
.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: 1rem 2rem;
    z-index: 100;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

.copyright {
    font-weight: 500;
}

.divider {
    color: #adb5bd;
}

.quip {
    color: #868e96;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 0.75rem 1rem;
    }

    .footer-content {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .divider {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 0.25rem;
    }
}