/* CSS styles for the web page */

.full-screen {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/back_one.png') no-repeat center center;
            background-size: cover;
            color: white;
            position: relative;
            text-align: center;
            z-index: 0; /* Ensure background is behind interactive elements */
        }

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7); /* Black mask with 70% opacity */
    z-index: 2; /* Ensure it's above the background image but below everything else */
}

bg-image-lobby {
    background-image: url('/lobby/lobby.jpg'); /* Ensure this points to the correct image path */
    background-size: cover;
    background-position: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Black mask with 70% opacity */
    z-index: 2;
}

.canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.highlight, .white-text {
    font-size: 5em;
    opacity: 0.8;
}

.highlight {
    color: #00ccff; /* Highlight color */
    text-shadow: 0 0 10px #00ccff; /* Text shadow for the highlight class */
}

.highlight:hover {
    color: white; /* Color change on hover */
}

.white-text {
    color: white;
    text-shadow: 0 0 10px black; /* Text shadow for white text */
}

.plain_text {
    color: lightgrey;
    font-size: 1.5em;
    margin-top: 20px; /* Position adjustment */
}

.interactive-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3; /* Above the canvas layer */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
