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

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.site-title {
    font-size: clamp(2.5rem, 10vw, 10rem);
    color: #1452b5;
    font-weight: 700;
    letter-spacing: 0.0125em;
    text-align: center;
}

.footer {
    position: fixed;
    bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-link {
    color: #1452b5;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 0.5rem;
}

.social-link:hover {
    color: #0d47a1;
    transform: translateY(-2px);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
    }
    
    .site-title {
        color: #64b5f6;
    }
    
    .social-link {
        color: #64b5f6;
    }
    
    .social-link:hover {
        color: #90caf9;
    }
}