body {
    font-family: sans-serif; /* Choose a font */
    margin: 0;
    padding: 0;
    background-color: #f0f0f0; /* Example background color */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center the content */
}

img {
    width: 200px; /* Adjust image size */
    height: 200px;
    border-radius: 50%; /* Make it circular */
    object-fit: cover; /* Prevents image distortion */
    margin-bottom: 10px;
}

h1 {
    margin-bottom: 5px;
}

a {
    color: #007bff; /* Example link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Add more styles as needed */