* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #4a90e2, #9013fe);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #fff;
    object-fit: cover;
}


.projects {
    margin: 20px 0;
}

.project-link {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}

.project-link:hover {
    color: #ddd;
}
.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
}


.social-links a:hover {
    color: #ddd;
}