body {
    font-family: 'Arial', sans-serif;
    background-color: #c0c2c4;
    color: #FFF;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the start of the container */
    padding-top: 10vh; /* Adjust this value as needed to move content down from the top */
    height: 100vh;
}

.profile-card {
    background: #363637;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-image {
    background: #19191a;
    color: white;
    font-size: 28px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
}

.profile-links a {
    display: block;
    background: #dedfe0;
    color: #000;
    text-decoration: none;
    padding: 0; /* Remove padding to control the height directly */
    margin: 20px 0;
    text-align: center;
    border: none; /* Remove rounded corners */
    transition: box-shadow; /* Smooth transition for shadow and transform */
    box-shadow: 4px 6px 6px #000; /* Prominent shadow for 3D effect */
    justify-content: center;
    width: 43vw; 
    height: 7.4vh;
    line-height: 7.4vh; /* Set line-height same as height to vertically center the text */
}

.profile-links a:hover {
    box-shadow: 2px 4px 6px #000; /* Slightly less prominent shadow on the bottom right */
    transform: translateX(2px) translateY(2px); /* Move the button down and to the right */
}

.profile-text-h1  {
    justify-content: center;
    margin: 0px;
    color: rgb(243, 243, 243);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}