body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#video-section {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

#video-section h1 {
    color: #fff;
    font-size: 2em;
    margin-top: 20px;
    margin-bottom: 20px;
}

#lighting-section {
    position: absolute;
    display: flex;
    justify-content: space-between;
    background-color: #111;
    width: 100vw;
    height: 100vh;
    z-index: 999;
}

#lighting-section .wrapper {
    position: relative;
    width: 50vw;
    height: 80vh;
}


#lighting-section .light {
    position: absolute;
    border-radius: 45%;
    top: 80px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

#lighting-section .text {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 320px;
    height: 160px;
    z-index: 1001;
}

#lighting-section .text pre {
    font-size: 1.2em;
    font-weight: bold;
    color: cyan;
}