body, html {
    height: 100%;
    margin: 100;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.info-container {
    padding-left: 20px; /* Add some space between the image and the text */
}

.card {
    width: 400px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent to see the background */
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(200, 200, 200, 0.6); /* Light border for visibility */
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative; /* Ensure it's above the canvas */
    z-index: 10; /* Higher z-index to ensure it's above the background */
      display: flex; /* Enable flexbox */
    align-items: center; /* Center items vertically */
    justify-content: start; /* Align items to the start (left) */
    padding: 20px; /* Add some padding */
  
}



.name-container {
  padding: 20px;
  color: #341939;
  
}

.profile-photo {
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    border-radius: 50%; /* Make it round */
    object-fit: cover; /* Ensure the image covers the area */
    flex-shrink: 0; /* Prevent the image from shrinking */
}

#waveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the canvas is behind the card */
  
}