
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


#bg-video {
    position: fixed;
    top: 0; left: 0;
    min-width: 100%; min-height: 100%;
    object-fit: cover;
    z-index: -2;
}
.overlay {
    position: fixed;
    width: 100%; height: 100%;
    backdrop-filter: blur(8px);
    z-index: -1;
}


nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}
nav input[type="range"] {
    margin-left: 20px;
    width: 160px;
    cursor: pointer;
}


.card {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    max-width: 500px;
    margin: 200px auto;
    padding: 50px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}


.pfp {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover; 
}

.location {
    font-size: 1rem;
    color: #ccc;
}
.desc {
    font-size: 0.9rem;
    margin: 15px 0;
}


.links img {
    width: 40px;
    height: 40px;
    margin: 8px;
    transition: transform 0.2s;
}
.links img:hover {
    transform: scale(1.1);
}
