
#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;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: black; 
    overflow: hidden; 
}


.container {
    position: absolute;
    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;
    max-width: 650px; 
}

.profile-pic img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    margin-bottom: 20px;
    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);
}



h1 {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 5px;
    color: white;
}

.intro-text {
    font-size: 15px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 2.0;
    padding-bottom: 20px;
}

#buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

#buttons button {
    background-color: #2e2e2e;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 10px 15px;
    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);
}
