body {
    font-family: Arial, sans-serif;
    background-color: #333; /* Dark background color */
    color: #fff; /* Text color */
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for vertical centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100vh; /* Make sure the body covers the entire viewport height */
}

.container {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white background */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); /* Box shadow for the container */
    position: relative; /* Add position relative to the container */
}

.header {
    margin-bottom: 20px;
}

.profile-image {
    width: 150px; /* Increase the size of the circle */
    height: 150px; /* Increase the size of the circle */
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 20px; /* Center horizontally and add margin at the bottom */
    
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 36px;
    margin: 0;
}

p {
    font-size: 18px;
    margin: 20px 0;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #fff; /* Icon color */
    font-size: 24px;
}

.social-links i {
    text-decoration: none;
}
