body {
    margin: 0;
    padding: 0;
}

.video {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    display: flex;
    justify-content: center;
}

#bgVid {
    position: absolute;
    top: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.navbar {
    background-color: #333;
    opacity: 85%;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.navbar-nav {
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0;
    list-style: none;
    gap: 25px;
}

.navbar-nav > li {
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    margin-left: auto;
    gap: 15px;
    padding-right: 20px;
	align-items: center;
	flex-wrap: nowrap;
}

.navbar-logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar a {
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 40px;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar a.active {
    background-color: #04AA6D;
    color: white;
}

.navbar .icon {
    display: none;
}


.navbar-logo:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.powered-by {
    color: #ffffff;
    font-size: 16px;
    margin-right: 8px;
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    align-self: center; 
    white-space: nowrap;
}

.clickable-logo {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.clickable-logo:hover {
    transform: scale(1.05);
}

a[href^="https://"] {
    text-decoration: none;
    display: inline-flex; 
}

@media (max-width: 768px) {
    .powered-by {
        font-size: 12px;
        margin-right: 5px;
    }
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    #mix-blend-mode: screen; 
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    max-width: 60vw;
    pointer-events: none; 
}

.main-logo {
    width: 100%;
    height: auto;
    max-width: 600px;
    min-width: 300px;
    opacity: 1;
    animation: float 3s ease-in-out infinite;
}


@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}


@media (max-width: 768px) {
    .center-logo {
        max-width: 80vw;
    }
    .main-logo {
        min-width: 200px;
    }
}