/* General text settings */
body {
    font-family: VT323, monospace;
    font-size: 18px;
    color: #00F264;
    text-align: center;
    padding: 50px;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Video background with blur */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    filter: blur(8px); /* Blur effect */
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

h1 {
    color: #00F264;
    background-color: transparent;
    margin-bottom: 10px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 30px;
}

p{
    color: #00F264;
    text-decoration: none;
}

a {
    color: #00F264;
    text-decoration: none;
}

a:hover {
    text-decoration: bold;
}

/* Navigation Styles */
.navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.founders-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.founder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-button {
    padding: 15px 20px;
    background-color: #00F264;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.nav-button:hover {
    background-color: #00d157;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 15px #00F264, 0 0 25px #00F264;
    border: 2px solid #00F264;
}

.nav-button1 {
    padding: 15px 20px;
    background-color: #9E0092;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.nav-button1:hover {
    background-color: #ff00ea;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 15px #9E0092, 0 0 25px #9E0092;
    border: 2px solid #9E0092;
}

.nav-button2 {
    padding: 15px 20px;
    background-color: #07C0F9;
    color: black;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
    width: 200px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-family: 'VT323', monospace;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.nav-button2:hover {
    background-color: #008fbb;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 15px #07C0F9, 0 0 25px #07C0F9;
    border: 2px solid #07C0F9;
}

.nav-button:active {
    transform: translateY(0) scale(1);
    box-shadow: none;
}

/* Additional navigation buttons */
.additional-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-button:nth-child(1) {
    animation-delay: 0.2s;
}

.nav-button:nth-child(2) {
    animation-delay: 0.4s;
}

.nav-button:nth-child(3) {
    animation-delay: 0.6s;
}
.nav-button:nth-child(4) {
    animation-delay: 0.8s;
}
.nav-button:nth-child(5) {
    animation-delay: 1.0s;
}
.nav-button:nth-child(6) {
    animation-delay: 1.2s;
}
.nav-button:nth-child(7) {
    animation-delay: 1.4s;
}

/* Profile Image Styles */
.profile-image1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #9E0092;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 15px #9E0092, 0 0 25px #9E0092;
}

.profile-image2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #07C0F9;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 0 15px #07C0F9, 0 0 25px #07C0F9;
}

/* Center the header content */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    color: white;
    padding: 20px 0;
}

.ArcanaWebDevTitle{
    width: 520px; /* Increased size */
    height: 280px; /* Increased size */
    border-radius: 20px;
    border: 3px solid #ffffff;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
    animation: float 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founders-container {
        flex-direction: column;
        gap: 20px;
    }
    
    body {
        padding: 30px 20px;
    }
    
    .ArcanaWebDevTitle {
        width: 280px;
        height: 160px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .ArcanaWebDevTitle {
        width: 240px;
        height: 140px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    .profile-image1, .profile-image2 {
        width: 120px;
        height: 120px;
    }
    
    .nav-button, .nav-button1, .nav-button2 {
        width: 180px;
        padding: 12px 15px;
    }
}