
@font-face {
    font-family: 'TJOCLEAN-Regular';
    src: url('./TJOCLEAN-Regular.ttf');
}

html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    scroll-behavior: smooth;
    background-color: #000;
    width: 100%;
    height: 100%;
}

#bgvideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

#instruction {
    font-family: 'TJOCLEAN-Regular';
    color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    display: none;
}

.handsfree-debugger {
    position: fixed !important;
    bottom: 0;
    right: 0;
    width: 200px;
    z-index: 100; /* ensure it's above the video */
}

canvas {
    position: absolute; /* so it doesn't move other elements */
    display: block;
    z-index: 50; /* so it's above the video but below the debugger */
}

#loading-progress {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 20px; /* Spacing between the loading message and the progress bar */
}

#progress-container {
    max-width: 80%;
    margin: 0 auto; /* Center the progress bar */
    background-color: #333;
    border-radius: 15px;
}

#progress-bar {
    height: 30px;
    background-color: #FFD700;
    border-radius: 15px;
}

#flash-screen {
    background-color: #000f89; /* fallback background color */
    background-size: cover; /* this will cover the entire viewport */
    background-repeat: no-repeat;
}

#loading-gif {
    max-width: 100%; /* Adjust if the GIF is too large */
    height: auto;
}

#start-button {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

#start-button:hover {
    transform: translateX(-50%) scale(1.25);
}
