* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: rgb(0, 0, 0);
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;
}

.clock-container {
    z-index: 4;
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

.countdown {
    display: none;
    position: relative;
    transform: translateY(-267px);
    color: white;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.projector-container {
    z-index: 0;
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

.projector {
    position: relative;
    transform: translateY(-105px);
    width: 800px;
    height: 270px;
    background-color: white;
    border-radius: 5px;
    opacity: 0.9;
    animation: projectorAnimation 0.5s infinite;
}

.jazz-bar {
    z-index: 8;
    position: fixed;
}

.wall-clip {
    position: relative;
    width: 800px;
    height: 270px;
    overflow: hidden;
    top: -105px;
}

.wall {
    z-index: 5;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(104, 90, 54);
    border-radius: 5px;
    box-shadow: inset 50px 30px 70px 100px rgba(0, 0, 0, 0.5);
    animation: moveWall 28s forwards;
    display: none;
}

@keyframes moveWall {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
}

.wall-pattern {
    position: absolute;
    z-index: 6;
    top: 0px;
    width: 800px;
    height: 100%;
    border-radius: 5px;
}

.poster {
    z-index: 7;
    position: absolute;
    width: 80px;
    height: 125px;
    top: 15%;
    left: 75%;
    border-radius: 2px;
    background-color: rgb(211, 203, 203);
    box-shadow: inset 5px 5px 10px 2px rgba(0, 0, 0, 0.5);
    color: rgb(27, 26, 26);
    text-align: center;
    font-size: 13px;
    font-family: "hey-eloise", sans-serif;
    font-weight: 400;
    font-style: normal;

}

.door-frame {
    z-index: 7;
    position: absolute;
    width: 25px;
    height: 270px;
    top: 0;
    left: 775px;
    border-radius: 2px;
    background-color: rgb(26, 20, 8);
    box-shadow: inset 7px 2px 25px 2px rgba(39, 38, 38, 0.5);
}

.night-sky-container {
    position: fixed;
}

.sky-clip {
    position: relative;
    width: 800px;
    height: 270px;
    overflow: hidden;
    top: -105px;
}

.stars {
    display: none;
    position: absolute;
    z-index: 2;
    width: 200%;
    height: 100%;
    border-radius: 5px;
    opacity: 0.5;
    animation: moveStars 20s linear infinite;
}

@keyframes moveStars {
    0% {
      left: 0;
    }
    100% {
      left: -100%;
    }
}

.sky-container {
    position: relative;
    transform: translateY(-105px);
}

.night-sky {
    display: none;
    z-index: 1;
    position: absolute;
    z-index: 2;
    width: 800px;
    height: 270px;
    top: 0;
    opacity: 0.9;
    background-size: 300% 100%;
    background-image: linear-gradient(180deg, rgb(70, 7, 70), rgb(8, 8, 78), black);
    border-radius: 5px;
    animation: moveSky 4s linear infinite;
}

@keyframes moveSky {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
}

.bubble {
    display: none;
    z-index: 3;
    position: absolute;
    top: -30%;
    left: 18%;
    height: 250px; 
    width: 500px; 
    border-radius: 375px 375px 0 0; 
    background-color: white; 
    box-shadow: inset 10px 10px 30px 8px rgb(30, 1, 30);
    opacity: 0.45;
}

@keyframes hover {
    0% {
      transform: translateX(-3px); 
      transform: translateY(3px);
    }
    50% {
        transform: translateX(3px); 
        transform: translateY(-3px);
    }
    100% {
        transform: translateX(-3px); 
        transform: translateY(3px);
    }
}

@keyframes hover2 {
    0% {
      transform: translateX(-2px); 
    }
    50% {
        transform: translateX(2px); 
    }
    100% {
        transform: translateX(-2px); 
    }
}

.circle1 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 30%;
    left: 15%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 2s infinite;
}

.circle2 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 15%;
    left: 8%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover2 3s infinite;
}

.circle3 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 12%;
    left: 23%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 2s infinite;
}

.circle4 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 65%;
    left: 9%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover2 2s infinite;
}

.circle5 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 43%;
    left: 4%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 3s infinite;
}

.circle6 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 25%;
    left: 75%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover2 2s infinite;
}

.circle7 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 15%;
    left: 85%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 2s infinite;
}

.circle8 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 50%;
    left: 83%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover2 2s infinite;
}

.circle9 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 70%;
    left: 90%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 3s infinite;
}

.circle10 {
    display: none;
    z-index: 4;
    position: absolute;
    top: 40%;
    left: 93%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(96, 2, 96);
    box-shadow: inset 1px 2px 7px 1px rgb(205, 92, 205);
    opacity: 0.7;
    animation: hover 2s infinite;
}

.flicker-container {
    z-index: 10;
    position: fixed;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

.flicker {
    position: relative;
    transform: translateY(-105px);
    width: 800px;
    height: 270px;
    background-color: rgb(218, 218, 134);
    opacity: 0.2;
    border-radius: 5px;
    animation: flickerAnimation 0.5s infinite;
}

@keyframes flickerAnimation {
    0% {
      opacity: 0.15;
    }
    50% {
      opacity: 0.2;
    }
    100% {
      opacity: 0.15;
    }
  }

  @keyframes projectorAnimation {
    0% {
      opacity: 0.83;
    }
    50% {
      opacity: 0.9;
    }
    100% {
      opacity: 0.83;
    }
  }

.animation {
    z-index: 8;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}

.stickman {
    position: relative; 
    left: calc(50% - 25px); 
    transform: translateY(-140px); 
}

.head {
    position: relative;
    z-index: 5;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    height: 50px;
    width: 50px;
    background: rgb(68, 68, 68);
    border-radius: 50px;
    box-shadow: inset 20px 15px 10px 3px rgba(0, 0, 0, 0.5);
    animation: head 1s infinite;
}

.hair {
    z-index: 6;
    position: absolute;
    width: 30px;
    height: 20px;
    border-radius: 90px 0px 90px 0px; 
    box-shadow: inset -5px 5px 10px 2px rgba(0, 0, 0, 0.5);
    top: 3%; 
    left: 45%; 
    transform: translate(-50%, -50%);
    background-color: rgb(74, 74, 74);
    transform: rotate(15deg);
    animation: hair 1s infinite;
}

.hood{
    z-index: 9;
    position: absolute;
    height: 70px;
    width: 65px;
    background-color: transparent;
    border-radius: 50%;
    box-shadow: -35px -9px 0px -2px rgb(34, 34, 34);
    top: 70%;
    left: 117%;
    transform: translate(-50%, -50%);
    animation: hood 1s infinite;
}


.torso {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: auto;
    bottom: auto;
    left: 20px;
    height: 95px;
    width: 15px;
    background: rgb(68, 68, 68);
    border-radius: 5px;
}

.hoodie-body {
    position: absolute;
    z-index: 6;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 92px;
    width: 30px;
    background: rgb(34, 34, 34);
    border-radius: 10px 10px 3px 3px;
    animation: hoodie-body 1s infinite;
}


.left-arm {
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 22px;
    bottom: auto;
    left: auto;
    height: 90px;
    width: 11px;
    background: rgb(31, 31, 31);
    border-radius: 5px 5px 3px 3px;
    transform: rotate(33deg);
    animation: walk-left-arm 2s infinite;
}


.right-arm {
    position: absolute;
    z-index: 7;
    top: 15px;
    right: auto;
    bottom: auto;
    left: 22px;
    height: 90px;
    width: 11px;
    background: rgb(53, 53, 53);
    border-radius: 5px 5px 3px 3px;
    transform: rotate(-33deg);
    animation: walk-right-arm 2s infinite;
    box-shadow: inset 5px 3px 8px 1px rgba(0, 0, 0, 0.5);
}

.left-leg {
    position: absolute;
    z-index: 3;
    top: 85px;
    right: auto;
    bottom: auto;
    left: 30px;
    height: 125px;
    width: 13px;
    background: rgb(26, 25, 25);
    border-radius: 5px 5px 0px 0px;
    transform: rotate(-30deg);
    animation: walk-left-leg 2s infinite;
}

.right-leg {
    position: absolute;
    z-index: 4;
    top: 85px;
    right: 30px;
    bottom: auto;
    left: auto;
    height: 125px;
    width: 13px;
    background: rgb(56, 56, 56);
    border-radius: 5px 5px 0px 0px;
    box-shadow: inset 7px 25px 8px 2px rgba(0, 0, 0, 0.5);
    transform: rotate(30deg);
    animation: walk-right-leg 2s infinite;
}

.shoe-right {
    position: absolute;
    top: 215%;
    left: auto;
    z-index: 9;
    height: 12px;
    width: 30.5px;
    border-radius: 5px 30px 5px 0px;
    background: rgb(32, 32, 32);
    box-shadow: inset 3px 2px 15px 1px rgba(0, 0, 0, 0.5);
    transform-origin: top center;
    animation: walk-right-shoe 2s infinite;
}

.shoe-left {
    position: absolute;
    top: 215%;
    left: auto;
    z-index: 8;
    height: 12px;
    width: 30.5px;
    border-radius: 5px 30px 5px 0px;
    background: rgb(20, 20, 20);
    transform-origin: top center;
    animation: walk-left-shoe 2s infinite;
}


.shadow {
    z-index: 7;
    position: absolute;
    top: 220px;
    right: -40px;
    bottom: auto;
    left: auto;
    height: 2px;
    width: 200px;
    background: transparent;
    box-shadow: 0px 30px 14px 5px rgba(18, 18, 18, 0.5);
    animation: shadow 1s infinite;
}


@keyframes head {
    0% { top: 0px; transform: rotate(0deg); }
    50% { top: 5px; transform: rotate(3.5deg); }
    100% { top: 0px; transform: rotate(0deg); }
}

@keyframes hood {
    0% { top: 70%; left: 117%; transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-49.5%, -43%) rotate(3deg); }
    100% { top: 70%; left: 117%; transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes hoodie-body {
    0% { top: 55%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -45%) rotate(1.5deg); }
    100% { top: 55%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes hair {
    0% { top: 3%; transform: rotate(15deg); }
    50% { top: 7%; transform: rotate(23deg); }
    100% { top: 3%; transform: rotate(15deg); }
}

@keyframes walk-left-arm {
    0% { right: 22px; transform: rotate(33deg); }
    50% { transform: translateX(44px) rotate(-33deg); }
    100% { right: 22px; transform: rotate(33deg); }
}

@keyframes walk-right-arm {
    0% { left: 22px; transform: rotate(-33deg); }
    50% { transform: translateX(-44px) rotate(33deg); }
    100% { left: 22px; transform: rotate(-33deg); }
}

@keyframes walk-left-leg {
    0% { left: 30px; transform: rotate(-30deg); }
    50% { transform: translateX(-60px) rotate(30deg); }
    100% { left: 30px; transform: rotate(-30deg); }
}

@keyframes walk-right-leg {
    0% { right: 30px; transform: right(30px) rotate(30deg); }
    50% { transform: translateX(60px) rotate(-30deg); }
    100% { right: 30px; transform: rotate(30deg); }
}

@keyframes walk-right-shoe {
    0% { 
        top: 213%; 
        right: 44px; 
        transform: rotate(15deg); 
    }
    50% { 
        transform: translate(120px, -8%) rotate(-15deg); 
    }
    100% { 
        top: 213%; 
        right: 44px; 
        transform: rotate(15deg); 
    }
}

@keyframes walk-left-shoe {
    0% { 
        top: 209%; 
        left: 58px; 
        transform: rotate(-15deg); 
    }
    50% { 
        transform: translate(-118px, -8%) rotate(15deg); 
    }
    100% { 
        top: 209%; 
        left: 58px; 
        transform: rotate(-15deg); 
    }
}

@keyframes shadow {
    0% { right: -40px; transform: scaleX(1); }
    33% { transform: translateX(10px) scaleX(0.9); }
    100% { right: -40px; transform: scaleX(1); }
}

.tread-move {
    z-index: 1;
    position: fixed;
    left: 0; 
    width: 100%;
}

.treadmill {
    z-index: 1;
    box-shadow: inset 1px 1px 15px 0px rgb(20, 20, 20);
    position: relative;
    transform: translateY(81px);
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, rgb(26, 26, 26), rgb(40, 40, 40),  rgb(27, 27, 27), rgb(40, 40, 40));
    background-size: 300% 100%;
    animation: left-gradient 4s infinite;
}

@keyframes left-gradient {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 0;
    }
  }

.grain-texture {
    z-index: 2;
    position: absolute;
    top: 0;
    transform: translateY(81px);
    width: 100%;
    height: 100px;
}

.animate-grain {
    animation: moveLeft 4s linear infinite;
}

@keyframes moveLeft {
    0% {
      transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
  }

.remote-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.remote {
    z-index:5;
    position: relative;
    transform: translateY(280px) translateX(440px);
}

.remote-box {
    z-index: 0;
    position: relative; 
    width: 75px;
    height: 140px;
    background-color: white;
    border-radius: 13px;
    box-shadow: inset 2px 4px 15px 2px rgb(56, 56, 50); 
    top: 75%;
    left: 50%;
    transform: translateY(-50%); 
}

.play-button {
    z-index: 1;
    position: absolute; 
    top: 20%; 
    left: 50%; 
    transform: translateX(-50%); 
    cursor: pointer;
}

.circle-play {
    z-index: 2;
    box-shadow: inset 2px 2px 3px 1px rgb(56, 56, 50);
    position: relative; 
    width: 40px;
    height: 40px;
    background-color: grey;
    border-radius: 50%;
    margin: 0 auto; 
}

.triangle-play {
    z-index: 3;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 20px solid rgb(85, 85, 85);
	border-bottom: 10px solid transparent; 
}

.skip-button {
    z-index: 1;
    position: absolute; 
    top: 60%; 
    left: 50%; 
    transform: translateX(-50%); 
    cursor: pointer;
}

.circle-skip {
    z-index: 2;
    box-shadow: inset 2px 2px 3px 1px rgb(56, 56, 50);
    position: relative; 
    width: 40px;
    height: 40px;
    background-color: grey;
    border-radius: 50%;
    margin: 0 auto; 
}

.triangle-skip1 {
    z-index: 3;
    position: absolute;
    top: 50%; 
    left: 35%; 
    transform: translate(-50%, -50%); 
    width: 0;
	height: 0;
	border-top: 7.5px solid transparent;
	border-left: 15px solid rgb(85, 85, 85);
	border-bottom: 7.5px solid transparent; 
}

.triangle-skip2 {
    z-index: 3;
    position: absolute;
    top: 50%; 
    left: 70%; 
    transform: translate(-50%, -50%); 
    width: 0;
	height: 0;
	border-top: 7.5px solid transparent;
	border-left: 15px solid rgb(85, 85, 85);
	border-bottom: 7.5px solid transparent; 
}

.enabled-state::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: green;
    opacity: 30%;
    z-index: 4; 
}

.disabled-state::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: red;
    opacity: 30%; 
    z-index: 4; 
}

.instructions-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.instructions {
    transform: translateY(170px);
    color: white;
    overflow: hidden;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
    width: 0;
}

.instructions.start-instructions-animation {
    animation: instructionsTyping 5s linear forwards;
}

@keyframes instructionsTyping {
    from {
        width: 0;
      }
      to {
        width: 100%;
      }
}


.question-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.question2-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.question {
    transform: translateY(170px);
    color: white;
    overflow: hidden;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
    width: 0;
}
.question2 {
    transform: translateY(170px);
    color: white;
    overflow: hidden;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    white-space: nowrap;
    width: 0;
}
.question.start-typing-animation {
    animation: typing 5s linear forwards;
}

.question2.start-typing-animation {
    animation: typing 5s linear forwards;
}

@keyframes typing {
    from {
        width: 0;
      }
      to {
        width: 100%;
      }
}

.answer-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.answer1 {
    position: absolute;
    transform: translateY(220px);
    left: -300px;
    color: white;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}

.answer2 { 
    position: absolute;
    transform: translateY(220px);
    left: -100px;
    color: white;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}

.answer3 { 
    position: absolute;
    transform: translateY(220px);
    left: 100px;
    color: white;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}

.answer4 {
    position: absolute;
    transform: translateY(220px);
    left: 300px;
    color: white;
    font-size: 20px;
    font-family: "pf-videotext", sans-serif;
    font-weight: 400;
    font-style: normal;
    cursor: pointer;
}


@media (max-width: 768px) {
  body {
    transform: scale(0.5);
    transform-origin: center;               
    margin: 0 auto;               
    overflow: hidden;             
    position: absolute;          
    left: -50%;                  
    right: -50%;
  }
  
  .remote-container {
    top: 70%;
    left: 17.5%;
    transform: translate(-50%, -50%);
  }
}







