@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');



:root {
    --primary-color: #0A84FF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #1f2937;
}

.card-container {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    min-height: 100vh;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

@media (min-width: 480px) {
    .card-container {
        min-height: auto;
        border-radius: 24px;
        margin: 20px;
        overflow: hidden;
    }
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.social-btn {
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}