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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: #333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

main {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    color: #222;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #666;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 300;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.contact-item:hover {
    color: #222;
    transform: translateY(-1px);
}

.contact-item svg {
    transition: transform 0.2s ease;
}

.contact-item:hover svg {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
}
