* {
    cursor: url('https://r2.guns.lol/fcba464c-e3be-4383-a888-595e531ff2e9.png'), auto;
    font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    position: relative;
    color: white;
    text-shadow: 0 0 10px white, 0 0 20px white;
}


#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    transition: opacity 1.5s ease-out;
    z-index: 10;
}



video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.219); 
    backdrop-filter: blur(5px); 
    z-index: -1; 
}


.glow {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 0 0 10px white, 0 0 20px white;
}

.profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px;
    */ box-shadow: 0 0 30px #ffffff;
}

.icons {
    z-index: 1;
    position: relative; 
    margin-top: 10px;
}
.icons a {
    color: white;
    text-shadow: 0 0 10px white, 0 0 20px white;
    font-size: 40px;    
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.icons a:hover {
    color: rgb(151, 151, 151);
}

@media (max-width: 600px) {
    .profile-pic {
        width: 80px;
        height: 80px;
    }
    .glow {
        font-size: 1.5rem;
    }
    .icons a {
        font-size: 30px;
    }
}
