@import "https://www.nerdfonts.com/assets/css/webfont.css";
body {
    font-family: Arial, sans-serif;
    background-color: #1e1e1e;
    color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    flex-direction: column;
}

.business-card {
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    padding: 20px;
    text-align: center;
    width: 300px;
    margin: 10px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

h1 {
    font-size: 24px;
    margin: 0;
    color: #f4f4f9;
}

h2 {
    font-size: 18px;
    color: #888;
    margin: 10px 0;
}

p {
    margin: 10px 0;
    color: #ccc;
}

a {
    color: #1abc9c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 20px;
    font-size: 24px;
}

.social-icons i {
    margin: 0 10%;
    color: #1abc9c;
}

.social-icons i:hover {
    color: #16a085;
}


.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #1abc9c;
}

.social-link i {
    font-size: 24px;
    margin-bottom: 5px;
}

.social-link a {
    color: #1abc9c;
    text-decoration: none;
}

.social-link a:hover {
    text-decoration: underline;
}

    
