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

html {
    touch-action: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Georgia', serif;
    background: #000000;
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.business-card {
    width: 350px;
    height: 200px;
    background: #f5f5f5;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(0,0,0,0.12) 0%, transparent 15%),
        radial-gradient(circle at 85% 75%, rgba(0,0,0,0.10) 0%, transparent 20%),
        radial-gradient(circle at 65% 10%, rgba(255,255,255,0.9) 0%, transparent 25%),
        radial-gradient(circle at 25% 90%, rgba(0,0,0,0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(240,240,240,0.7) 0%, transparent 40%),
        repeating-linear-gradient(
            30deg,
            transparent 0px,
            rgba(0,0,0,0.04) 1px,
            transparent 2px,
            rgba(255,255,255,0.15) 3px,
            transparent 4px,
            rgba(0,0,0,0.02) 5px,
            transparent 8px
        );
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 
        0 20px 40px rgba(255,255,255,0.15),
        0 8px 16px rgba(255,255,255,0.1),
        0 4px 8px rgba(255,255,255,0.08),
        0 2px 4px rgba(255,255,255,0.06);
}

.name {
    font-size: 26px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #2a2a2a;
    text-shadow: 
        0 1.5px 1.5px rgba(255,255,255,0.9),
        0 -1px 1px rgba(0,0,0,0.3);
}

.title {
    font-size: 15px;
    color: #2a2a2a;
    margin-bottom: 4px;
    text-shadow: 
        0 1.2px 1.2px rgba(255,255,255,0.85),
        0 -0.8px 0.8px rgba(0,0,0,0.28);
}

.email {
    font-size: 15px;
    color: #2a2a2a;
    text-shadow: 
        0 1.2px 1.2px rgba(255,255,255,0.85),
        0 -0.8px 0.8px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
    .business-card {
        width: 380px;
        height: 216px;
    }
    
    .name {
        font-size: 24px;
    }
    
    .title {
        font-size: 15px;
    }
    
    .email {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .business-card {
        width: 360px;
        height: 205px;
    }
}

