* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: ZenoFont;
    src: url(../res/Fonts/MuseoSans-900.otf);
}

:root {
    --ZenoGrey: #222222;
    --CustomYellow: rgb(249, 202, 59);
    --CustomOrange: rgb(216, 91, 53);
    --cursorX: 0px;
    --cursorY: 0px;
}

body {
    background-color: var(--ZenoGrey);
    display: flex;
    height: 100vh; /* Ensure the body takes up the full viewport height */
    justify-content: center;
}

figure {
    position: relative; /* Make the figure the reference point for absolute positioning */
    padding: 0; /* Remove any padding */
    display: block; /* Set to block to ensure figure takes the image's size */
    margin: 0; /* Remove default margin */
    height: 100vh;
    overflow: hidden;
}

#zeno{
    display: block; /* Prevent any extra space below the image */
    height: 100%; /* Maintain the aspect ratio */
}

.element {
    position: absolute; /* Position relative to the figure */
    opacity: 100%;
}

#start_button{
    cursor: pointer;
    color: green;
}

#start{
    position: absolute;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .8);
    backdrop-filter: blur(5px);
    z-index: 1;    
}

#start a{
    font-family: ZenoFont;
    display: block;
    position: relative;
    font-size: 1em;
    top: 50%;
    padding: 10px;
    border: 2px solid var(--CustomYellow);
    color: var(--CustomYellow);
    background-color: var(--CustomOrange);
    text-align: center;
    width: 200px;
    left: calc(50% - 100px);
    transition-duration: .1s;
}

#start a:hover{
    border: 2px solid var(--CustomOrange);
    color: var(--CustomOrange);
    background-color: var(--CustomYellow);
}

#laserlight{
    position: absolute;
    z-index: 1;
    width: 20px;
    height: 20px;
    left: 0px;
    right: 0px;
    transform: translateX(var(--cursorX)) translateY(var(--cursorY));
    pointer-events: none;
}

.slider-container {
    opacity: 50%;
    position: absolute;
    width: 300px;
    margin: 20px auto;
    text-align: center;
    left: 20px;
    bottom: 0%;
}

.slider {
    width: 100%;
    border: 1px;
}

.label {
    font-family: ZenoFont;
    color: white;
    font-size: 16px;
}

#cat-container{
    pointer-events: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

#background{
    background-color: var(--CustomYellow);
    height: 78vh;
    z-index: 2;
    margin-top: 13.5vh;
    transform: scaleX(96%);
    margin-bottom: 10vh;
}