/* Import Orbitron font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');


body, html {
    user-select: none; /* Standard syntax */
}

body {
    background-color: #00052A;
    font-family: 'Orbitron', sans-serif;
}

.goodEndingPerson {
    position: absolute;
    width: auto;
    height: 400px;

    z-index: 5;
}

#jeffreysEnding, #lamarEnding {
    top: 200px;
}

#palmerEnding, #riggsEnding {
    top: 175px;
}

#riggsEnding {
    left: 150px;   
}

#lamarEnding {
    left: 320px;
}

#jeffreysEnding {
    left: 580px;

}

#palmerEnding {
    left: 750px;
    
}

.badEndingPerson {
    position: absolute;
    width: 300px;
    height: auto;

    z-index: 5;
}

#riggsDead {
    left: 110px;
    top: 480px;
    transform: rotate(324deg);
}

#palmerDead {
    left: 690px;
    top: 490px;
    transform: rotate(31deg);
}

#endAlien {
    position: absolute;
    bottom: 10px;
    left: 400px;
    height: 400px;
    width: auto;
}

#qtecontainer {
    left: 50%;
    transform: translate(-50%);
    width: 1050px;
    height: 625px;
    position: relative;
    z-index: 2;

}

.qteHide {
    display: none; 
}

#countdown,
#qteResult,
#livesCounter,
#gameOver {
    position: absolute;
    color: black;
    text-align: center;
}

#countdown {
    color: white;
    font-size: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 75px;
    height: 75px;
    background-color: #00000099;
    border-radius: 50%;
    line-height: 75px;
}


#qteKey {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 310px;
    color: white;
    left: 100px;
    width: 150px;
    height: 150px;
    background-color: #00000099;
    border-radius: 50%;
    text-align: center;
}

#qteKeyPressText {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translate(-50%);
    font-size: 30px;
    background-color: black;
    text-align: center;
    padding: 0px 5px 0px 5px;
}

#qteKeyShown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    text-align: center;
    padding: 0px 5px 0px 5px;
}

#qteResult {
    top: 350px;

}

#livesCounter {
    text-align: center;
    top: 150px;
    padding: 15px;
    left: 60px;
    width: 200px;
}

#livesText {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translate(-50%);
    font-size: 30px;
    background-color: #000000;
    color: white;
    padding: 0px 10px;
}

#gameOver {
    top: 250px;
    background-color: white;
    width: 200px;
    height: 50px;
    left: 50%;
    transform: translate(-50%);
}

#qteProgressBar {
    width: 80%;
    height: 25px;
    background-color: blue; /* Red bar representing the QTE timer */
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%);
    color: white;
    text-align: center;
    padding: 2px;
}

#healthBarContainer {
    text-align: center;
    color: white;
    width: 30%;
    height: 20px;
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%);
    background-color: #FFFFFF80;
}

#qteHealthBar {
    width: 100%;
    height: 20px;
    background-color: red;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.healthBarName {
    position: absolute;
    top: -35px;
    background-color: #00000090;
    left: 50%;
    transform: translate(-50%);
    padding: 5px;
    width: 200px;
}

.hearts {
    height: 50px;
    width: auto;
}

#qtelastguy {
    bottom: 150px;
}

.qtePerson {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    height: 300px;
    transition: width 0.5s ease, height 0.5s ease;
    transform-origin: bottom;
}

.qtePerson img {
    height: 100%;
    width: auto;
    left: 50%;

}

.damage {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 50%;

}

.ouch-flash {
    animation: flash 0.5s linear;
}

@keyframes flash {
    0% { background-color: red; }
    50% { background-color: white; }
    100% { background-color: red; }
}

.mapBackground {
    position: absolute;
    width: 140px;
    height: 140px;
    left: 5px;
    top: 5px;
    z-index: 50;
    background-color: #00000090;
}

.map {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 160px;
    z-index: 10;
}

.triangle {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid red; /* Change color as needed */
    z-index: 15;
    animation: triangle infinite 1.5s ease;
}

#triangle13 {
    bottom: 25px;
}

.dialogueArrow {
    right: 50px;
    bottom: 30px;
    position: absolute;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid white;
    animation: arrowBlink infinite 2s ease;

}

@keyframes arrowBlink {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 0%;

    }
    100% {
        opacity: 100%;
    }
}

@keyframes triangle {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

.rooms {
    position: absolute;
    background-color: yellow;
    width: 20px;
    height: 20px;
    z-index: 2;
}

#room11 {
    left: 50%;
    transform: translate(-50%);
    bottom: 10px;
}

#room11A {
    left: 10px;
    bottom: 25px;
}

#room11B {
    right: 10px;
    bottom: 25px;
}

#roomCorridor {
    left: 50%;
    transform: translate(-50%);
    bottom: 50px;
    height: 40px;
}

#room14 {
    left: 50%;
    transform: translate(-50%);
    bottom: 95px;
}

#room12B {
    right: 10px;
    bottom: 50px;
}

#room12A {
    left: 10px;
    bottom: 50px;
}

#room12C {
    left: 10px;
    bottom: 75px;
}

#room15 {
    left: 50%;
    transform: translate(-50%);
    bottom: 120px;
}

.link {
    position: absolute;
    width: 5px;
    z-index: 1;
    background-color: yellow;
}

#link1 {
    left: 50%;
    transform: translate(-50%);
    top: 25px;
    height: 120px;
}

#link2 {
    left: 50%;
    transform: translate(-50%) rotate(90deg);
    top: 65px;
    height: 70px;
}
#link3 {
    left: 50%;
    transform: translate(-50%) rotate(90deg);
    top: 109px;
    height: 65px;
}
#link4 {
    left: 20px;
    transform: translate(-50%);
    bottom: 20px;
    height: 25px;
}
#link5 {
    right: 15px;
    transform: translate(-50%);
    bottom: 20px;
    height: 25px;
}
#link6 {
    left: 20px;
    transform: translate(-50%);
    top: 70px;
    height: 25px;
}

#stage {
    width: 1250px;
    height: 625px;
    position: relative;
    margin: auto;
    background-color: black;
    overflow: hidden;
    margin-top: 20px;
}

/* PAGE1 CSS */

#startgame {
    border-radius: 20px;
    line-height: 50px;
    color: white;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3);
    width: 300px;
    height: 100px;
    right: 100px;
    bottom: 250px;
    text-align: center;
    cursor: pointer;
    z-index: 5;
    border: 2px solid black; /* Added border for visibility */
}

#startgame:hover {
    transform: scale(1.05);
}

#text1, #text2, #text3 {
    font-weight: 600;
}

#title {
    animation: bobbingB 5s ease-in-out infinite;
    font-size: 40px;
    position: absolute;
    left: 300px;
    top: 100px;
    text-align: center;
    z-index: 5;
    color: #FF0000;
    transform: rotate(10deg);
}

.starbackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
}

.star {
        position: absolute;
        background-color: white;
        width: 2px;
        height: 2px;
        border-radius: 50%;
        animation: twinkle 5s linear infinite;
        z-index: 2;
}

@keyframes twinkle {
        0% { opacity: 0; transform: translateY(0); }
        50% { opacity: 1; }
        100% { opacity: 0; transform: translateY(20px); }
}

#shipApage1 {
    position: absolute;
    bottom: 10px;
    left: 50px;
    height: 400px;
    width: auto;
    z-index: 3;
    animation: bobbingA 5s ease-in-out infinite;
}

@keyframes bobbingA {
        0%, 100% { transform: translateY(0) scaleX(-1) rotate(10deg); } /* Start and end position */
        50% { transform: translateY(-10px) scaleX(-1) rotate(10deg); } /* Middle position */
}

/* PAGE2 CSS */
.page2text {
    position: absolute;
    width: 500px;
    left: 100px;
    top: 100px;
    text-align: left;
    z-index: 5;
    color: white;
}

#text1 {
    width: 100%;
    height: 50px;
    display: none;
}

#text2 {
    width: 100%;
    height: 50px;
    
    display: none;
}

#text3 {
    width: 100%;
    height: 50px;
    
    display: none;
}

#planet {
    position: absolute;
    bottom: -300px;
    right: 200px;
    width: 600px;
    height: auto;
    z-index: 2;
    animation: spin 500s linear infinite; /* Animation settings */
}

@keyframes spin {
    from {
        transform: rotate(0deg); /* Start from 0 degrees */
    }
    to {
        transform: rotate(360deg); /* End at 360 degrees (full circle) */
    }
}

#shipBpage2 {
    position: absolute;
    top: 150px;
    right: 100px;
    height: 200px;
    width: auto;
    z-index: 3;
    animation: bobbingB 5s ease-in-out infinite;
}

@keyframes bobbingB {
        0%, 100% { transform: translateY(0); } /* Start and end position */
        50% { transform: translateY(-5px); } /* Middle position */
    }

/* PAGE3 */

.page3 {
    background-image: url(images/firstroom.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.hexagon1 {
    cursor: pointer;
    position: absolute;
    left: 100px;
    top: 170px;
    width: 160px;
    height: 272px; /* Height calculation for hexagon */
    clip-path: polygon(20% 0%, 74% 0%, 100% 21%, 100% 60%, 59% 100%, 17% 100%, 0% 89%, 0% 8%);
}

.hexagon2 {
    cursor: pointer;
    position: absolute;
    right: 200px;
    top: 198px;
    width: 178px;
    height: 210px;
    clip-path: polygon(15% 0%, 80% 0%, 100% 25%, 100% 67%, 78% 100%, 15% 100%, 0% 89%, 0% 8%);
    transform: scaleX(-1);
}

.hexagon3 {
    cursor: pointer;
    position: absolute;
    left: 430px;
    top: 148px;
    width: 284px;
    height: 292px;
    background-color: black;
    clip-path: polygon(15% 1%, 88% 5.6%, 100% 26%, 99.4% 72.7%, 84% 93%, 17% 97.6%, 0% 78%, 0% 25%);
}

#firstroomdoor {
    position: absolute;
    width: 103%;
    height: 112%;
    left: -5px;
    top: -263px;
}

#blooddrag {
    position: absolute;
    top: 441px;
    left: 150px;
    width: 110px;
    transform: rotate(180deg);
    height: auto;
}

.page10 {
    background-image: url(images/page10.jpg);
    background-repeat: no-repeat;
    background-position: center;
}


.page11 {
    background-image: url(images/firstroom.jpg);
    background-repeat: no-repeat;
    background-position: center;
}


.hexagon4 {
    cursor: pointer;
    position: absolute;
    left: 0px;
    top: 170px;
    width: 160px;
    height: 272px; /* Height calculation for hexagon */
    clip-path: polygon(20% 0%, 74% 0%, 100% 21%, 100% 60%, 59% 100%, 17% 100%, 0% 89%, 0% 8%);


   }

.hexagon5 {
    cursor: pointer;
    position: absolute;
    right: 100px;
    top: 198px;
    width: 178px;
    height: 210px;
    clip-path: polygon(15% 0%, 80% 0%, 100% 25%, 100% 67%, 78% 100%, 15% 100%, 0% 89%, 0% 8%);
    transform: scaleX(-1);
   }

.hexagon6 {
    cursor: pointer;
    position: absolute;
    left: 330px;
    top: 148px;
    width: 284px;
    height: 292px;
    background-color: black;
    clip-path: polygon(15% 1%, 88% 5.6%, 100% 26%, 99.4% 72.7%, 84% 93%, 17% 97.6%, 0% 78%, 0% 25%);
}

#roomdoor11 {
    position: absolute;
    width: 103%;
    height: 112%;
    left: -5px;
    top: -263px;
}

#fusePage11 {
    position: absolute;
    height: 16px;
    width: auto;
    top: 288px;
    left: 196px;
    transform: rotate(90deg);
}

#sparks-container {
    position: absolute;
    width: 55px;
    height: 90px;
    overflow: hidden;
    z-index: 4;
    left: 200px;
    top: 250px;
    cursor: pointer;
    
}

.spark {
    position: absolute;
    width: 2px;
    height: 3px;
    background-color: yellow;
    opacity: 0;
    animation: fly-spark 0.8s forwards;
}

@keyframes fly-spark {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(var(--x), var(--y));
        opacity: 0;
    }
}
  
.page11A {
    background-image: url(images/storageA.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

#hint {
    font-size: 12px;
    display: none;
    cursor: default;
    width: 350px;
    height: 75px;
    pointer-events: none;
    border-radius: 15px;
}

@keyframes hint {
    0% {
        opacity: 0%;
    }
    25% {
        opacity: 100%;
    }
    50% {
        opacity: 100%;
    }
    75% {
        opacity: 100%;
    }
    100% {
        opacity: 0%;
    }
}

.page3A {
    left: 100px;
}

.xenomorph {
    cursor: pointer;
    position: absolute;
    width: 250px;
    height: 300px;
    right: 270px;
    bottom: 100px;
    z-index: 4;
}

.xenomorph-blood {
    position: absolute;
    width: 30px;
    height: 100px;
    right: 50px;
    bottom: 0px;
    z-index: 5;
}

.xenomorph img {
    animation: character 2s infinite ease;
}

@keyframes character {
    0% {
        height: 100%;
    }
    50% {
        height: 98%;
    }
    100% {
        height: 100%;
    }
}

#xenomorph-stand {
    position: absolute;
    width: 80%;
    height: auto;
    z-index: 4;
    bottom: 0;
    right: 0;
    display: none;
}

#xenomorph-crouch {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 4;
    bottom: 0;
    right: 0; 
}

#captain2morph {
    position: absolute;
    width: auto;
    height: 300px;
    z-index: 4;
    bottom: 0;
    right: 50px;
    display: none;
}

#xenomorph3B {
    position: absolute;
    width: auto;
    height: 100%;
    animation: character 2s infinite ease;
    bottom: 0;
    display: none; 
  }

  .animate3B {
    position: absolute;
    width: 170px;
    height: 266px;
    bottom: 145px;
    left: 160px;
    z-index: 2;

  }

#powerCut {
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: absolute;
    top:0;
    left:0;
    z-index:3;
    display: none;
}

/* PAGE4 */

#shipApage4 {
    position: absolute;
    width: 600px;
    height: auto;
    bottom: 50px;
    right: 300px;
    z-index: 3;
    animation: bobbingA 5s ease-in-out infinite;
}

.shipAinterior1 {
    position: absolute;
    background-image: url(images/controlroomB.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* PAGE 5 */

#captain1page5 {
    position: absolute;
    width: 150px;
    height: auto;
    left: 250px;
    top: 180px;
    z-index: 2;
}

/* PAGE 6 */

#shipApage6 {
    position: absolute;
    width: 300px;
    height: auto;
    left: -300px;
    top: 200px;
    z-index: 2;
    animation: bobbingA 5s ease-in-out infinite;

}

/* PAGE 8 */

.exitdoor {
    background-image: url(images/exitdoor.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

/* PAGE 9 */

#miniship {
    position: absolute;
    left: 330px;
    top: 270px;
    width: 90px;
    height: auto;
    z-index: 2;

}

#miniship2 {
    position: absolute;
    left: 790px;
    top: 270px;
    width: 90px;
    height: auto;
    z-index: 2;
    transform: scaleX(-1);
}

#shipApage9 {
    position: absolute;
    width: 300px;
    height: auto;
    left: 200px;
    top: 200px;
    z-index: 3;
    animation: bobbingA 5s ease-in-out infinite;

}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    line-height: 25px;
}

.talking {
    position: absolute;
    width: 130px;
    height: 130px;
    left: 15px;
    bottom: 0;
}

.talking img {
    width: auto;
    height: 100%;
    left: 0;
}

.endMission {
    position: absolute;
    left: 880px;
    top: 20px;
    width: 80px;
    height: auto;
    z-index: 10;
    cursor: pointer;
}

.endMission img {
    width: 100%;
    height: auto;
}

.endMission img:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.hoverText {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 95px;
    z-index: 10;
    width: 120px;
    color: white;
    text-align: center;
    display: none;
    text-shadow: -2px 0 2px black, 0 2px 2px black, 2px 0 2px black, 0 -2px 2px black;
    font-size: 20px;
}

.previouspage {
    position: absolute;
    left: 50px;
    bottom: 40px;
    width: 90px;
    height: auto;
    cursor: pointer;
    z-index: 10;
}

.previouspage img:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.previouspage img {
    width: 100%;
    height: auto;
}

.death {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translate(-50%);
    color: red;
    font-size: 30px;
    text-shadow: -2px 0 2px black, 0 2px 2px black, 2px 0 2px black, 0 -2px 2px black;
}

.tryAgain {
    position: absolute;
    background-color: #00000099;
    top: 300px;
    left: 50%;
    transform: translate(-50%);
    color: black;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    padding: 0px 10px;
    color: white;
    width: 200px;
}

.dialogue {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    position: absolute;
    background-color: #1D3E8F99;
    border-radius: 15px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
    width: 600px;
    height: 150px;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    cursor: pointer;
    z-index: 101;
    color: white;
    display: none;
    text-shadow: 0px 0px 2px black;
}

#yesOrNo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: auto;
    display: none;
}

#areYouSure {
    top: 40px;
}

.yes, .no {
    bottom: 25px;
    position: absolute;
    width: 75px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #00000099;
    border-radius: 10px;
    cursor: pointer;
}

.yes {
    left: 150px; 
}

.no {
    right: 150px;
}

#page5stars {
    width: 84%;
    left: 50%;
    transform: translate(-50%);
}

.speaker {
    position: absolute;
    top: -30px;
    height: 30px;
    background-color: #FF000099;
    left: 15px;
    line-height: 30px;
    padding: 0px 20px;
    border-radius: 5px 5px 0px 0px;
}

.dialogueOverlay {
    position: absolute;
    background-color: #00000060;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.deathOverlay {
    position: absolute;
    background-color: #FF000080;
    width: 100%;
    height: 100%;
    z-index: 101;
    display: none;
}

#X {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -70px;
    top: 20px;
    background-color: #FFFFFF90;
    border-radius: 50%;
    font-size: 30px;
    text-align: center;
    line-height: 50px;
    pointer-events: none;
    color: black;
}

#container {
    width: 1050px;
    height: 625px;
    position: relative;
    z-index: 2;  
}

#inventory {
    width: 200px;
    height: 70%;
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #002679; /* Adjust color as needed */
    text-align: center;
    color: white;
   
}

#palmer {
    height: 300px;
    width: auto;
    position: absolute;
    top: 185px;
    left: 200px;
    cursor: pointer;
}

#airlock {
    position: absolute;
    top: 145px;
    left: 390px;
    height: 260px;
    width: auto;
    cursor: pointer;
}

#airlock2 {
    position: absolute;
    top: 49%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
    width: auto;
    cursor: pointer;
}

#doorcode {
    position: absolute;
    right: 119px;
    top: 250px;
    height: 100px;
    width: 100px;
    cursor: pointer;
    background-image: url(images/doorcodebackground.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    }

#doorcode img {
    position: absolute;
    width: 75px;
    height: 75px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#wirestext {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 10px;
    width: 400px;
    height: 50px;
    background-color: #1D3E8F99;
    border-radius: 15px;
    color: white;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px;
    text-align: center;
    cursor: default;
}

#background {
    z-index: -1;

}

#foreground {
    z-index: 10;
}


#overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* semi-transparent black background */
    z-index: 5;
    cursor: pointer;
}

#wiresgame {
    height: 360px;
    width: 360px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("images/wires.jpg");
    background-size: cover;
    cursor: default;
}

.yellow {
    top: 66px;
    left: 10px;
    position: absolute;
    width: 35px;
    height: 15px;
}

#yellow {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.yellowcable {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: transform 0.3 ease;
    transform-orgin: left 100%;
}

.blue {
    top: 140px;
    left: 10px;
    position: absolute;
    width: 35px;
    height: 15px;
}

#blue {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.bluecable {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: transform 0.3 ease;
    transform-orgin: left 100%;
}

.red {
    top: 215px;
    left: 10px;
    position: absolute;
    width: 35px;
    height: 15px;
}

#red {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.redcable {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: transform 0.3 ease;
    transform-orgin: left 100%;
}

.pink {
    top: 288px;
    left: 10px;
    position: absolute;
    width: 35px;
    height: 15px;
}

#pink {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.pinkcable {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    transition: transform 0.3 ease;
    transform-orgin: left 100%;
}

#dropyellow {
    top: 212px;
    right: 10px;
    position: absolute;
    width: 50px;
    height: 20px;
}

#dropblue {
    top: 138px;
    right: 10px;
    position: absolute;
    width: 50px;
    height: 20px;
}

#dropred {
    top: 64px;
    right: 10px;
    position: absolute;
    width: 50px;
    height: 20px;
}

#droppink {
    top: 286px;
    right: 10px;
    position: absolute;
    width: 50px;
    height: 20px;
}

.cableDraggable {
    cursor: pointer;
}

#captain1 {
    height: 300px;
    width: auto;
    position: absolute;
    top: 185px;
    right: 200px;
    cursor: pointer;
}



#door1 {
    cursor: pointer;
    position: absolute;
    height: 100px;
    width: auto;
    top: 100px;
    left: 150px;

}

#door2 {
    cursor: pointer;
    position: absolute;
    height: 100px;
    width: auto;
    top: 100px;
    right: 150px;
    
}

#door3 {
    cursor: pointer;
    position: absolute;
    height: 100px;
    width: auto;
    bottom: 100px;
    right: 10px;
    
}

#flashlightOverlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 10000px; /* Set the width of the overlay */
    height: 10000px; /* Set the height of the overlay */
    background-color: rgba(0, 0, 0, 0); /* Set the background color of the overlay */
    pointer-events: none; /* allow mouse events to pass through */
    z-index: 3;
    /* Use a radial gradient to create a transparent circle in the middle */
    background-image: radial-gradient(circle at center, transparent 0, transparent 100px, rgba(0, 0, 0, 0.92) 150px);

}

#pitchblack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Set the width of the overlay */
    height: 100%; /* Set the height of the overlay */
    background-color: rgba(0, 0, 0, 0.92); /* Set the background color of the overlay */
    pointer-events: none; /* allow mouse events to pass through */
    z-index: 3;
}

.ui-draggable-dragging {
    z-index: 1000 !important; /* Increase the z-index while dragging */
}

#fusebox {
    position: absolute;
    height: auto;
    width: 60px;
    top: 250px;
    left: 304px;
}

#fuseboxPage11 {
    cursor: pointer;
    position: absolute;
    height: auto;
    width: 60px;
    top: 250px;
    left: 204px;
}

#nametag {
    cursor: pointer;
    position: absolute;
    height: 50px;
    width: auto;
    top: 500px;
    right: 550px;
    z-index: 3;
    animation: itembobbing ease 2s infinite;
}

@keyframes itembobbing {
        0%, 100% { transform: translateY(0); } /* Start and end position */
        50% { transform: translateY(-10px); } /* Middle position */
    }

@keyframes flamethrowerbobbing {
        0%, 100% { transform: rotate(24deg) translateY(0); } /* Start and end position */
        50% { transform: rotate(24deg) translateY(-10px); } /* Middle position */
    }

#deadbody {
    cursor: pointer;
    position: absolute;
    height: 110px;
    width: auto;
    top: 510px;
    right: 130px;
    z-index: 1;
    transform: scaleX(-1) rotate(312deg);
}

#airvent {
    cursor: pointer;
    position: absolute;
    height: auto;
    width: 130px;
    top: 120px;
    right: 320px;
}


#blooddrip {
    width: 130px;
    height: auto;
    position: absolute;
    top: 162px;
    right: 320px;
}

.blood-container {
    position: absolute;
    width: 110px;
    overflow: hidden;
    right: 330px;
    top: 170px;
    height: 320px;
}

.blood-drop {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 5px;
    height: 10px;
    background: #B40000;
    border-radius: 50%;
    
}

#bloodpool11A {
    position: absolute;
    width: 290px;
    height: auto;
    right: 204px;
    top: 495px;
    transform: rotate(16deg);
}

.page11B {
    background-image: url(images/11B.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.armory {
    background-image: url(images/armory.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

#fuse {
    cursor: pointer;
    position: absolute;
    bottom: 190px;
    left: 375px;
    width: 75px;
    height: auto;
    z-index: 3;
    animation: fusebobbing ease 2s infinite;
}

@keyframes fusebobbing {
        0%, 100% { transform: translateY(0) scaleX(-1) rotate(10deg); } /* Start and end position */
        50% { transform: translateY(-10px) scaleX(-1) rotate(10deg); } /* Middle position */
    }

#desk {
    position: absolute;
    bottom: 90px;
    left: 200px;
    width: 250px;
    height: auto;
}

#drawer {
    cursor: pointer;
    position: absolute;
    bottom: 120px;
    left: 372px;
    width: 80px;
    height: 90px;
    z-index: 1;
}

#flute {
    cursor: pointer;
    position: absolute;
    top: 380px;
    left: 300px;
    width: 70px;
    height: auto;
    z-index: 3;
    display: none;
    animation: itembobbing ease 2s infinite;

}

.page12 {
    background-image: url("images/page12.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page12A {
    background-image: url("images/lockerroom.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page12B {
    background-image: url("images/page12B.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page12C {
    background-image: url("images/page12C.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#puzzleItemsContainer {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 50px;
    list-style-type: none;
    background-color: gray;
    padding: 0;
    margin: 0;   
}

.puzzleItems {
    width: 50px;
    height: 50px;
    float: left;
    margin: 0 12.5px 0 12.5px;
    padding: 0;
    background-color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    cursor: pointer;


}

.lockercodetext {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%);
}

.lockercode {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: black;
    color: white;
    text-align: center;
    cursor: default;

}

.page13 {
    background-image: url("images/page13.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.page14 {
    background-image: url("images/page14.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

#corridor {
    cursor: pointer;
    position: absolute;
    top: 220px;
    left: 423px;
    height: 175px;
    width: 186px;
    border-radius: 50%;
}

#page13door {
    cursor: pointer;
    position: absolute;
    top: 156px;
    left: 368px;
    height: 290px;
    width: 300px;
    border-radius: 50%;
    z-index: -1;
}

.circle {
    width: 100px; /* Set the width of the circle */
    height: 100px; /* Set the height of the circle */
    background-color: blue; /* Set the background color of the circle */
    border-radius: 50%; /* Make the div a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

#middlelocker {
    position: absolute;
    left: 316px;
    bottom: 109px;
    height: 238px;
    width: 52px;
    cursor: pointer;

}

#door4 {
    cursor: pointer;
    position: absolute;
    height: 460px;
    width: 120px;
    bottom: 50px;
    left: 100px;
}

#inv-flamethrower {
    width: 50px;
}

#door5 {
    cursor: pointer;
    position: absolute;
    height: 460px;
    width: 120px;
    bottom: 50px;
    right: 109px;
}

#page12Adoor {
    cursor: pointer;
    position: absolute;
    height: 290px;
    width: 130px;
    top: 210px;
    left: 482px;
 
}

#locker {
    position: absolute;
    height: 249px;
    width: auto;
    top: 272px;
    left: 215px;
    cursor: pointer;
}

#photo {
    position: absolute;
    height: 60px;
    width: auto;
    top: 100px;
    left: 400px;
}

#jeff {
    position: absolute;
    cursor: pointer;
    height: 400px;
    width: auto;
    right: 460px;
    top: 200px;
}

.characterTree {
    position: absolute;
    height: 400px;
    left: 50%;
    transform: translate(-50%);
    top: 150px;
    z-index: 11;
}

.characterTree img {
    height: 100%;
    width: auto;
}

.characterTreeDroppable {
    position: absolute;
    z-index: 3;
    top: 0px;
    height: 280px;
    width: 100%;
}

.tree {
    position: absolute;
    cursor: pointer;
    width: 250px;
    height: 75px;
    text-align: center;
    vertical align: middle;
    line-height: 75px;
    z-index: 11;
    border-radius: 10px;
}

#kill {
    background-color: red;
    bottom: 250px;
    left: 100px;
}

#spare {
    background-color: green;
    bottom: 250px;
    right: 100px;
    
}

#talk {
    background-color: yellow;
    top: 50px;
    right: 410px;
}

#cole {
    position: absolute;
    cursor: pointer;
    height: 300px;
    width: auto;
    right: 440px;
    top: 200px;

}

.gunsafe {
    position: absolute;
    cursor: pointer;
    height: 230px;
    width: auto;
    top: 212px;
    left: 175px;
}

#safecode {
    height: 499px;
    width: 360px;
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("images/gunsafecode.png");
    background-size: cover;
    cursor: auto;
}

.codeButtons {
    position: absolute;
    cursor: pointer;
    height: 60px;
    width: 60px;
    background-color: #ff999960;
    color: red;
    opacity: 0;
}

#one {
    top: 115px;
    left: 58px;
}

#two {
    top: 115px;
    left: 149px;
}

#three {
    top: 115px;
    left: 240px;
}

#four {
    top: 195px;
    left: 58px;
}

#five {
    top: 195px;
    left: 149px;
}

#six {
    top: 195px;
    left: 240px;
}

#seven {
    top: 273px;
    left: 58px;
}

#eight {
    top: 273px;
    left: 149px;
}

#nine {
    top: 273px;
    left: 240px;
}

#enter {
    top: 357px;
    left: 58px;
}

#zero {
    top: 357px;
    left: 149px;
}

#clear {
    top: 357px;
    left: 240px;
}

#numberdisplay {
    position: absolute;
    width: 150px;
    height: 50px;
    top: 50px;
    left: 100px;
    background-color: #7F7F7F40;
    color: #0082FF;
    text-align: center;
    letter-spacing: 10px;
    vertical align: middle;
    line-height: 50px;
    font-size: 30px;

}


#flamethrower {
    position: absolute;
    cursor: pointer;
    height: 170px;
    width: auto;
    top: 247px;
    left: 200px;
    display: none;
    animation: itembobbing ease 2s infinite;
}

#captainA {
    position: absolute;
    cursor: pointer;
    height: 300px;
    width: auto;
    top: 200px;
    left: 270px;
}

#captainB {
    position: absolute;
    cursor: pointer;
    height: 300px;
    width: auto;
    top: 200px;
    right: 300px;
    transform: scaleX(-1);
}

.deadCrew {
    position: absolute;
    width: 250px;
    height: auto;
    left: 50%;
    transform: translate(-50%);
    bottom: 70px;
    display: none;
}

#deadSmith {
    width: 200px;
}



#eggdoor {
    position: absolute;
    cursor: pointer;
    width: 200px;
    height: 250px;
    background-color: blue;
    top: 150px;
    right: 435px;
    z-index: -1;
    opacity: 25%;
}

.eggcontainer {
    position: absolute;
    width: 80%;
    height: 100%;
    left: 50%;
    transform: translate(-50%);


}

.dropBox {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #1D3E8F99;
    right: 30px;
    bottom: 30px;
    border-radius: 10px;
    text-align: center;
    color: white;
    overflow: hidden;
    display: none;
    z-index: 11;
}

#dropBoxText {
    position: relative;
    width: 100%;
    height: 20px;
    text-align: center;
    top:0px;
    background-color: #000D5C;
    padding: 10px 0px 10px 0px;

}

.dropBox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 125px;
    height: auto;
    
}

#itemEquipped {
    position: relative;
    height: 100px;
}

#crosshair {
    position: absolute;
    pointer-events: none;
    height: 100px;
    width: auto;
    z-index: 4;

}

#ventinterior {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    height: 100%;
    width: auto;
}

#playVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
}
#playVideoContainer {
    width: 100%;
    height: 90%;
    position: relative;
    overflow: hidden;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#crawl {
    left: 220px;
    top: 43%;
    position: absolute;
    height: 30%;
    width: auto;
    transform-origin: center;
    animation: crawl 5s infinite linear;
    overflow: hidden;
}


@keyframes crawl {
    0% {
        transform: scaleX(1) scale(1);
        top: 40%;
    }
    24.99% {
        transform: scaleX(1) scale(1.5);
    }

    25% {
        transform: scaleX(-1) scale(1.5);
         top: 55%;

    }
    49.99% {
        transform: scaleX(-1) scale(2);
    }
    50% {
        transform: scaleX(1) scale(2);
         top: 70%;
    }
    74.99% {
        transform: scaleX(1) scale(2.5);
    }
    75% {
        transform: scaleX(-1) scale(2.5);
         top: 85%;
    }
    99.99% {
        transform: scaleX(-1) scale(3);
    }
    100% {
        transform: scaleX(1) scale(3);
        top: 100%;
        
    }
}

#replayBlink {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 15px;
    left: 50px;
    background-color: red;
    z-index: 2;
    border-radius: 50%;
    animation: blink infinite 1s ease;
}

@keyframes blink {
    0% {
        opacity: 100%;
    }
    50% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

#replayText {
    position: absolute;
    top: 20px;
    left: 90px;
    z-index: 2;
    color: white;
}

.alien {
    position: absolute;
    width: 75px;
    height: 75px;
    cursor: none;
    animation: mirror 0.5s infinite;
    display: none;
  }



@keyframes mirror {
  0% {
    transform: scaleX(-1);
  }
  1% {
    transform: scaleX(1);
  }
  49% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(-1);
  }
  100% {
    transform: scaleX(-1);
  }
}

.stop-animation {
    animation: none !important; /* Override animation property */
    opacity: 65%;
    width: 90px;
    height: 90px;
}


.eggcontainer {
    z-index: 3;
}




@keyframes hatch {
  0% {
    transform: scaleY(1.1);
    transform-origin: bottom;
  }
  
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  
  100% {
    transform: scaleY(1.1);
    transform-origin: bottom;
  }
}



.nests {
    position: absolute;
    left: 50px;
    top: 100px;
    z-index: 2;
}

.nest1 {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.nest2 {
    position: absolute;
    top: 50px;
    left: 160px;
}

.nest3 {
     position: absolute;
    top: 20px;
    left: 300px;
    z-index: -1;
}

.nest4 {
    position: absolute;
    top: 50px;
    left: 460px;
}

.nest5 {
    position: absolute;
    top: 0px;
    left: 600px;
    z-index: -1;
}

.egg {
    position: absolute;
    width: 100px;
    height: auto;
    /*animation: hatch 0.5s infinite ease;*/
}

#egg1 {
    top: 30px;
    left: 50px;
}

#egg2 {
    top: 20px;
    left: 90px;
}

#egg3 {
    top: 40px;
    left: 120px;
}

#egg4 {
    top: 30px;
    left: 175px;
}

#egg5 {
    top: 30px;
    left: 50px;
}

#egg6 {
    top: 20px;
    left: 90px;
}

#egg7 {
    top: 40px;
    left: 120px;
}

#egg8 {
    top: 30px;
    left: 175px;
}

#egg9 {
    top: 30px;
    left: 50px;
}

#egg10 {
    top: 20px;
    left: 90px;
}

#egg11 {
    top: 40px;
    left: 120px;
}

#egg12 {
    top: 30px;
    left: 175px;
}

#egg13 {
    top: 30px;
    left: 50px;
}

#egg14 {
    top: 20px;
    left: 90px;
}

#egg15 {
    top: 40px;
    left: 120px;
}

#egg16 {
    top: 30px;
    left: 175px;
}

#egg17 {
    top: 30px;
    left: 50px;
}

#egg18 {
    top: 20px;
    left: 90px;
}

#egg19 {
    top: 40px;
    left: 120px;
}

#egg20 {
    top: 30px;
    left: 175px;
}


#camera {
    position: absolute;
    top: 70px;
    right: 150px;
    width: 75px;
    height: auto;
}

#blood15 {
    height: 350px;
}

#cameraBlink {
    position: absolute;
    top: 106px;
    right: 190px;
    width: 5px;
    height: 5px;
    cursor: pointer;
    background-color: red;
    border-radius: 50%;
    animation: cameraBlink 1s infinite ease;
}

@keyframes cameraBlink {
    0% {
        opacity: 100%;

    }
    50% {
        opacity: 0%;
    }
    100% {
        opacity: 100%;
    }
}

#airvent2 {
    position: absolute;
    height: 75px;
    width: auto;
    top: 50px;
    right: 100px;
}



.page15 {
    position: absolute;
    background-image: url(images/page15.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.monitorGrouped {
    position: absolute;
    left: 130px;
    top: 120px;
}

.page15vent {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: scale(0.8);
}

#blooddrip2 {
    width: 75px;
    height: auto;
    position: absolute;
    right: 100px;
    top: 121px;
}


#dead15 {
    position: absolute;
    width: 200px;
    height: auto;
    top: 440px;
    right: 200px;
}

#person15 {
    position: absolute;
    width: auto;
    height: 200px;
    top: 250px;
    right: 450px;
    cursor: pointer;
}

.beginSequence {
    cursor: pointer;
    position: absolute;
    left: 50%;
    bottom: 130px;
    transform: translate(-50%);
    width: 150px;
    height: 75px;
    background-color: red;
    text-align: center;
    border-radius: 10px;
}


.incorrectCode {
    position: absolute;
    left: 50%;
    bottom: 350px;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 50px;
    text-align: center;
    display: none;
    color: white;
    font-size: 25px;
}

.number {
    position: absolute;
    color: green;
    width: 50px;
    height: auto;
    opacity: 80%;
    z-index: 1;
}

#number8 {
    top: 45px;
    left: 191px;
}

#number0 {
    top: 85px;
    left: 410px;
    transform: rotate(-10deg);
}

#number4 {
    top: 85px;
    left: 650px;
}

#number7 {
    top: 40px;
    left: 790px;
    transform: rotate(50deg);
}

.alienblood {
    position: absolute;   
    top: 100px;
    pointer-events: none;

}

.alienblood img {
    display: none;
}


.gunsafecodenumbers {
    position: absolute;
    top: 95px;
    z-index: 3;
    cursor: pointer;
}

#alienblood1 {
    position: absolute;
    width: 250px;
    height: 120px;
    top: 30px;
    left: 90px;
    opacity: 50%;
    z-index: -2;
}

#alienblood2 {
    position: absolute;
    width: 250px;
    height: 120px;
    top: 70px;
    left: 230px;
    opacity: 50%;
    z-index: -2;
}

#alienblood3 {
    position: absolute;
    width: 250px;
    height: 120px;
    top: 55px;
    left: 390px;
    opacity: 50%;
    z-index: -2;
}

#alienblood4 {
    position: absolute;
    width: 250px;
    height: 120px;
    top: 80px;
    left: 550px;
    opacity: 50%;
    z-index: -2;
}

#alienblood5 {
    position: absolute;
    width: 250px;
    height: 120px;
    top: 20px;
    left: 680px;
    opacity: 50%;
    z-index: -2;
}

#page14door {
    position: absolute;
    cursor: pointer;
    width: 121px;
    height: 132px;
    right: 440px;
    top: 25px;
}

#page14doorDroppable {
    position: absolute;
    width: 300px;
    height: 132px;
    right: 280px;
    top: 25px;
    pointer-events: none;
}

#doorGoo img {
    position: absolute;
    width: 115%;
    height: auto;
    left: 50%;
    transform: translate(-50%);
}

#goo1 {
    top: -30px;
}
#goo2 {
    top: 0px;
}
#goo3 {
    top: 35px;
}
#goo4 {
    top: 60px;
}

#flame {
    position: absolute;
    height: auto;
    width: 200px;
    z-index: 10;
    animation: flame 0.3s infinite steps(1);
    transform-origin: right;
    pointer-events: none;
    display: none;

}

@keyframes flame {
    0%, 24.9% {
      transform: scaleY(1) scale(1);
    }
    25%, 49.9% {
      transform: scaleY(1) scale(1.1);
    }
    50%, 74.9% {
      transform: scaleY(-1) scale(1);
    }
    75%, 100% {
      transform: scaleY(-1) scale(1.1);
    }
  }



#memorygame {
    position: absolute;
    cursor: default;
    top: 5px;
    left: 50%;
    transform: translate(-50%);
    width: 600px;
    height: 100%;
    background-color: #FFFFFF60;
}

#monitor {
    position: absolute;
    width: 600px;
    height: auto;
    top: 50px;
    left: 50%;
    transform: translate(-50%);
}

#monitors {
    cursor: pointer;
}



#monitors1 {
    position: absolute;
    width: 90px;
    height: 117px;
    top: 204px;
    left: 40px;
}

#monitors2 {
    position: absolute;
    width: 95px;
    height: 83px;
    top: 235px;
    left: 130px;
}

#monitordisplay {
  
    position: absolute;
    width: 585px;
    height: 333px;
    top: 57px;
    left: 7px;
    background-color: black;
}

#controlcentre {
    width: 250px;
    height: auto;
    position: absolute;
    top: 200px;
    left: 10px;
    transform: scaleX(-1);
    
}

.color-button {
    cursor: pointer;
    position: absolute;
    bottom: 50px;
    width: 50px;
    height: auto;
}

#redbutton {
    left: 50px;
}

#bluebutton {
    left: 200px;
}

#greenbutton {
    left: 350px;
}

#yellowbutton {
    left: 500px;
}

#bagtext {
    font-size: 20px;

}

#backpack {
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    width: 200px;
    border-bottom: 5px solid red;
    height: 186px;
    color: white;
    background-color: #002679;
   
}

#backpack img {
    width: 150px;
    height: auto;
    padding-top: 20px;
    pointer-events: none;

}

.draggable:hover, .inv-draggable:hover, #bag:hover {
    transform: scale(1.15); /* Increase size by 10% */
    transition: transform 0.3s ease; /* Smooth transition effect */
    cursor: pointer;
}

#inventory .items {
    width: 90px;
    height: 90px;
    float: left;
    margin: 5px;
    margin-bottom: 35px;
    background-color: #00000060;


}

#inventory .items img {
    display: none;
    top: 25%;
    

    z-index: 6;
}

#bag {
    width: 250px;
    height: auto;
    left: 400px;
    top: 100px;
    position: absolute;
    cursor: pointer;
    animation: itembobbing ease 2s infinite;
}

#flashlight {
    width: 175px;
    height: auto;
    position: absolute;
    top: 300px;
    left: 100px;
    z-index: 3;
    
}

#gun {
    width: 200px;
    height: auto;
    position: absolute;
    top: 300px;
    right: 100px;
    
}

#inv-flamethrower:hover {
    transform: scale(1.1) rotate(24deg);
}


#inv-gun, #inv-flute, #inv-nametag, #inv-fuse {
    width: 90px;
    height: auto;
}



#inv-flamethrower {
    height: 55px;
    width: auto;
 
}


#inv-flashlight {
    width: 80px;
    height: auto;
}

