body {
    background-color: #2E002E; /* Dark purple background */
    font-family: 'Arial Narrow', sans-serif; /* Narrow font for a retro feel */
    margin: 0;
    padding: 0;
    color: #FF1493; /* Neon pink text color */
}

.container {
    max-width: 600px;
    margin: 100px auto; /* Center the container vertically and horizontally */
    text-align: center;
}

.name, .contact {
    font-size: 48px; /* Larger font size for the name and contact */
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 #FF69B4, 6px 6px 0 #FFD700; /* Pink and yellow text shadow */
}

img {
    width: 200px; /* Adjust the size of the profile picture as needed */
    border-radius: 50%; /* Round profile picture */
    margin-bottom: 20px;
    border: 5px solid #FFD700; /* Neon yellow border */
    box-shadow: 0 0 15px #FF69B4; /* Pink glow around the profile picture */
}

.bio {
    font-size: 20px;
    line-height: 1.6;
}

.social-links, .back-link {
    margin-top: 20px;
}

.social-links a, .back-link a {
    display: inline-block;
    margin-right: 10px;
    color: #FFD700; /* Neon yellow social links */
    text-decoration: none;
    font-weight: bold; /* Make social links stand out */
}

.social-links a:hover, .back-link a:hover {
    color: #FF69B4; /* Neon pink on hover */
}
