#vanta-bg {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: flex;  
    justify-content: center;  
    align-items: center;  
}

body {

    font-family: 'Poppins', sans-serif;

}

.container {
    position: absolute;
    z-index: 1;
    text-align: center;
    padding: 40px; 
    color: #ffffff; 
    background: rgba(255, 255, 255, 0.0); 
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.9); 
    border-radius: 15px;
    display: inline-block;
}
  


.profile-pic img {
    width: 170px;
    height: 170px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    transition: all 0.4s ease-in-out;

}

.profile-pic img:hover {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}




#info .name {
    font-size: 20px; 
    font-weight: bold; 
    letter-spacing: 5px; 
    margin-bottom: 20px; 
}

#info .intro-text {
    font-size: 15px; 
    max-width: 600px;
    margin-top: 20px;
    
   
}


#buttons {
    display: flex;
    align-items: center; 
    justify-content: center;
    gap: 20px;
    margin-top: 20px;

}


#buttons button {
    background-color: #2e2e2e; 
    color: #ffffff; 
    border: 1px solid; 
    padding: 10px 15px;
    margin: 10px;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#buttons button:hover {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}

