* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
	font-optical-sizing: auto;
}

body {
    background: #e3e3e3;
	background: linear-gradient(90deg, rgba(227, 227, 227, 1) 0%, rgba(224, 240, 255, 1) 35%, rgba(219, 255, 223, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.name {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.bio {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
	line-height:1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #666;
    font-size: 20px;
    transition: color 0.3s, transform 0.2s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.social-icons a.twitter:hover {
    color: #1DA1F2;
}

.social-icons a.instagram:hover {
    color: #E1306C;
}

.social-icons a.github:hover {
    color: #333;
}

.social-icons a.youtube:hover {
    color: #FF0000;
}

.social-icons a.linkedin:hover {
    color: #0077B5;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-btn {
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.link-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.link-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 24px;
    }

    .bio {
        font-size: 14px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icons a {
        font-size: 20px;
    }

    .link-btn {
        font-size: 16px;
        padding: 12px;
    }
}