body {
    font-family: 'Roboto', sans-serif; /* Use a modern font */
    margin: 0;
    padding: 0;
    background-color: #f8f8f8; /* Light background color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure full viewport height */
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    width: 350px; /* Adjust width as needed */
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Maintain aspect ratio */
    margin-bottom: 20px;
}

h1 {
    color: #333; /* Darker heading color */
    margin-bottom: 10px;
}

p {
    color: #666; /* Slightly lighter text color */
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column; /* Stack links vertically */
    gap: 15px; /* Spacing between links */
}

.link-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #e91e63; /* Example color - Customize */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.link-button:hover {
    background-color: #d81b60; /* Darker on hover */
}

.footer {
  margin-top: 20px;
  color: #777;
  font-size: 0.8rem;
}
