/* Reset default browser margins */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #c1afa0; 
    color: #6c584c;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #3f352f;
}

header {
    margin-bottom: 3rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.icon-link svg {
    width: 48px;
    height: 48px;
    
    color: #6c584c; 
    fill: #6c584c; 
    stroke: #6c584c; 
    transition: stroke 0.2s ease, transform 0.2s ease;
}

.icon-link:hover svg {
    transform: scale(1.1);
    color: #3f352f; 
    fill: #3f352f; 
    stroke: #3f352f; 
}

/* Accessibility: Focus outline for keyboard navigation */
a:focus-visible {
    outline: 2px solid #3f352f;
    outline-offset: 4px;
}