:root {
    --primary: #333;
    --secondary: #666;
    --accent: #0066cc;
    --bg: #f5f5f5;
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max-width: 34rem;
}

body {
    font-family: var(--font);
    color: var(--primary);
    background: var(--bg);
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
}

.header {
    position: relative;
}

.profile-img-container {
    display: flex;
    margin: auto;
    max-width: 24rem;
    padding-top: 4rem;
}

.profile-img {
    border-radius: 20%;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0, 0, 0, 0.1), 0 8px 10px -6px rgb(0, 0, 0, 0.1);
    height: 12rem;
    object-fit: cover;
    object-position: center;
    width: 12rem;
}

.name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
    color: var(--primary);
}

.tagline {
    font-size: 1.25rem;
    line-height: 1.5rem;
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 400;
}

@media (min-width: 1024px) {
    .tagline {
        font-size: 1.5rem;
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: var(--primary);
    transition: color .2s ease;
}

.social-links a:hover {
    color: var(--accent);
}

.status {
    flex: 1;
}

.status h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}

.status p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--primary);
    margin-bottom: 1rem;
}

.status p:last-child {
    margin-bottom: 0;
}

.interests {
    color: var(--secondary);
}

a {
    color: var(--accent);
    text-decoration: underline;
    transition: color .2s ease;
}

a:hover {
    color: var(--primary);
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    margin-top: auto;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: .9rem;
    color: var(--secondary);
}