/* prod css */
.lang-switch a {
    margin-right: 10px;
    text-decoration: none;
    color: #ff0062;
}

.nav-link:hover {
    color: var(--bs-warning) !important;
}

.footer-link:hover {
    color: var(--bs-warning) !important;
}

.menu_dropdown-item:hover {
    color: var(--bs-white) !important;
}

.license-pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: clamp(0.8rem, 0.3vw + 0.75rem, 0.95rem);
    line-height: 1.5;
}

@media (min-width: 992px) {
    .license-pre {
        max-height: 65vh;
        overflow: auto;
    }
}





/* temp css */





iframe {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 1vh;
    /* opacity: 0.01; */
}


.header-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ff69b4;
    animation: marquee 2s infinite alternate;
}

@keyframes marquee {
    0% {
        text-shadow: 0 0 10px #ff69b4, 0 0 20px #ff69b4;
    }

    100% {
        text-shadow: 0 0 20px #ff69b4, 0 0 40px #ff69b4;
    }
}


.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}



.video-container iframe {

    width: 100%;

    height: 100%;

    border: 0;

}