/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background-color: #F9F6F1;
    color: #76442D;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

/* Name in top left - smallest, subtle */
header {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.name {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

/* Main content - centered */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

/* Typing text - largest, main focus */
h1 {
    font-size: 7rem;
    letter-spacing: 4px;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    white-space: nowrap;  /* Stay on one line */
    text-align: center;   /* Centered */
}

/* Blinking cursor */
.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Tagline - proportionally larger */
.tagline {
    font-size: 1.75rem;
    line-height: 2;
    max-width: 800px;
    font-weight:500;
}

/* Email at bottom - small, subtle */
footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
}

footer a {
    font-size: 1.5rem;
    color: #76442D;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

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