* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea, #764ba2);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 600px;
}

.frame {
    border-radius: 18px;
    text-align: center;
}

.greeting-frame {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 18px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    
}

.contact-frame {
    background: #ffffff;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    border: 2px solid #e6e6e6;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}



.hello {
    color: white;
    font-size: 24px;
    font-weight: 500;
}

.name {
    font-size: 38px;
    font-weight: 700;
    color:white;
}

h3{
    color: black;
    
}

.contact-intro {
    margin-top: 10px;
    font-size: 16px;
    color: black;
    margin-bottom:20px;
}





.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    color: white;
    cursor: pointer;
}

.social-btn i {
    font-size: 32px;
    margin-bottom: 10px;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Social Media Colors */
.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok {
    background: linear-gradient(45deg, #25f4ee 0%, #1d6b84 50%, #000000 100%);
}

.facebook {
    background: linear-gradient(45deg, #1877f2, #3b5998);
}

.youtube {
    background: linear-gradient(45deg, #ff0000 0%, #cc0000 100%);
}

.x {
    background: linear-gradient(45deg, #000000 0%, #1a1a1a 100%);
}

.email {
    background: linear-gradient(45deg, #ff6b6b 0%, #ee5a52 100%);
}

.linkedin {
    background: linear-gradient(45deg, #0077b5, #005983);
}




footer {
    background: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hello {
        font-size: 20px;
    }

    .name {
        font-size: 30px;
    }

    .frame {
        padding: 20px;
        margin-bottom: 20px;
    }

    .social-btn {
        padding: 18px;
    }

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 600px) {

    .social-links {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .social-btn {
        padding: 15px 10px;
    }

    .social-btn i {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hello {
        font-size: 20px;
    }

    .name {
        font-size: 26px;
    }

    .frame {
        padding: 15px;
        margin-bottom: 15px;
    }

    .social-btn {
        padding: 15px;
        font-size: 12px;
    }

    .social-btn i {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    footer {
        padding: 15px 20px;
        font-size: 13px;
    }
}
