body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.click-to-enter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

.click-to-enter.hide {
    opacity: 0;
    pointer-events: none;
}

.click-to-enter p {
    color: #fff;
    font-size: 2rem;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #fff;
    animation: glow 2s ease-in-out infinite;
}

.main-content {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: none; 
}

.main-content.show {
    display: block; 
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bio-box {
    background-color: rgba(33, 33, 33, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    max-width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: 2px solid #bb86fc;
    outline-offset: 10px;
}
.bio-box h1, .bio-box p {
    color: #fff;
    text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 5px #ff0000, 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000;
    }
    50% {
        text-shadow: 0 0 10px #ff0000, 0 0 15px #ff0000, 0 0 20px #ff0000, 0 0 25px #ff0000;
    }
}

.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.social-button {
    width: 50px;
    height: 50px;
    margin: 0 0.5rem;
    transition: transform 0.3s ease;
}

.social-button:hover {
    transform: scale(1.1);
}

.social-button img {
    width: 100%;
    height: 100%;
}
/* Add these styles to your CSS file */
a {
    color: #bb86fc; /* Change this color to your desired hyperlink color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #fff; /* Change this color for the hover state */
    text-shadow: 0 0 5px #fff, 0 0 10px #bb86fc, 0 0 15px #bb86fc, 0 0 20px #bb86fc; /* Add a glow effect */
}
