#campfireMessages {
    overflow-y: auto;
    overflow-x: hidden;
    height: 20rem;
    padding: 0 0.5rem;
    font-family: 'Roboto', sans-serif;
}
.selected {
  filter: brightness(0.5)
}


body {
    font-family: 'Roboto', sans-serif;
    background-image: url('./cavewall2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: #222;
    margin: 0;
    background-size: 200vh 100vw;
} 

#navbar {
    display: flex;
    justify-content: space-between;
    background-color: rgb(0, 0, 0);
}

#navbarTitle {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    font-family: 'Caveat', cursive;
}

#currentTime {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    font-family: 'Roboto', sans-serif;
}

#dock {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    height: 60px;
    bottom: 1%;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 1rem;
}

.dockImage {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    padding-top: 0.3rem;
}

#campfire {
    top: 20%;
    left: 20%;
    display: none;
    height: 25rem;
    width: 56rem;
    background-color: rgba(20, 20, 20, 0.99);
    position: fixed;
    border-radius: 0.5rem;
    color: orange;
}

#campfireheader {
    display: flex;
    background-color: rgb(255, 255, 255);
    padding: 0.5rem;
    height: 1rem;
    width: 55rem;
    border-radius: 0.5rem;
    color: black;
}


#welcome {
    height: 25rem;
    width: 46rem;
    background-color: rgba(200, 200, 200, 0.97);
    position: fixed;
    border-radius: 0.5rem;
    top: 20%;
    left: 20%;
}

#welcomeheader {
    display: flex;
    background-color: rgb(255, 255, 255);
    padding: 0.5rem;
    height: 1rem;
    width: 45rem;
    border-radius: 0.5rem;
}

#cave {
    display: none;
    height: 25rem;
    width: 46rem;
    background-color: rgba(236, 155, 15, 0.99);
    color: gray;
    position: fixed;
    border-radius: 0.5rem;
    top: 20%;
    left: 20%;
    
}

#caveheader {
    display: flex;
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 0.5rem;
    height: 1rem;
    width: 45rem;
    border-radius: 0.5rem;
}

.closeButton {
    font-family: 'Roboto', sans-serif;
    display: flex;
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.closeIcon {
    width: 1rem;
    height: 1rem;
}

.windowText {
    padding: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

#shareButtonArea {
    display: flex;
    justify-content: left;
}

#shareButton {
    margin-bottom: 0.5rem;
    background-color: orange;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    margin-left: 0.5rem;
    padding-right: 0.1rem;
    padding-left: 0.1rem;
    align-content: center;
    font-size: 1rem;
    font-weight: bold;
    
}

#messageIMG {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    padding-top: 0.3rem;
}

#welcomeAchievmentIMG {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    padding-top: 0.3rem;
    
}


#clickIMG {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    padding-top: 0.3rem;
    background: white;
}



#fireIMG {
    height: 3rem;
    width: 3rem;
    border-radius: 0.5rem;
    padding-top: 0.3rem;
    background: white;
}


.notfound {
    filter: grayscale(100%);
    filter: brightness(30%);
}

.messagebox {
    background-color: rgba(77, 90, 77, 0.696);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    max-width: 100%;
    height: auto;
    width: fit-content;
}

#AI {
    display: none;
    height: 10rem;
    width: 46rem;
    background-color: rgba(0, 0, 0, 0.99);
    color: white;
    position: fixed;
    border-radius: 0.5rem;
    top: 20%;
    left: 20%;
}

#AIheader {
    display: flex;
    background-color: rgb(255, 255, 255);
    color: black;
    padding: 0.5rem;
    height: 1rem;
    width: 45rem;
    border-radius: 0.5rem;

}

#ask {
    margin-left: 1rem;
    width: 40%;

}


#endingOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: black;
  z-index: 999999;
  pointer-events: none;
}

#endingOverlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#endingOverlay.show {
  display: flex;
}