body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#webcam {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* Mirror the webcam feed */
}

#canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(-1); /* Mirror the canvas to match webcam */
    pointer-events: none;
}

#three-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

#status {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    z-index: 10;
}

#links-para{
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    margin-bottom: 0;
}

a {
    color: #0000FF !important;
}

#logo-link{
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: Helvetica, sans-serif;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: center;
    text-decoration: none;
}

#logo {
    font-size: 2em;
}