html,
  .readingroom {
  background-image: url("background.jpg");

  color: #282A36;
  font-family: "report", monospace;
  -webkit-font-smoothing: none;
  margin: 0px;
  cursor: url("cursor.png") 12 12, auto;

  height: 100vh;
  padding:0;
  position: fixed;
  z-index:0;
  

}

#window{
  position:relative;
  height: 100vh;
  width:100vw;
  z-index: 1;
  
}

#imagereadingroom{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

#chandelierimg{
  position: absolute;
  width: 10vw;
  top: 0vh;
  left: 63vw;
  z-index: 2;
  animation-name: light;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes light{
  0%{
  filter: brightness(1) drop-shadow(0 0 4px rgba(255, 220, 120, 0.25));}
  50%{
  filter: brightness(1.1) drop-shadow(0 0 18px rgba(255, 220, 120, 0.7));}
  100%{
  filter: brightness(1) drop-shadow(0 0 4px rgba(255, 220, 120, 0.25));}
  
}
  

#images{
  z-index: 4;
  position: absolute;
}

.gramophone-wrap {
  position: absolute;
  top: 20vw;
  left: 20vw;
  width: 20vw;
  cursor: url("cursor.png") 12 12, pointer;
}

#gramophone {
  position: absolute;
  width: 15vw;
  top: 47vh;
  left: 14.5vw;
  cursor: url("cursor-click.png") 12 12, pointer;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}

/* verborgen youtube player */
#yt-player {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hover-box {
  position: relative;
  display: inline-block;
  cursor: url("cursor-click.png") 12 12, pointer;
}

.textblock {
  display: none;
  position: absolute;
  background: #141b42;
  padding: 10px;
  border: 1px solid #b08a4a;
  width: max-content;
  z-index: 99;
}

.hover-box:hover .textblock {
  display: block;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 5000;
}

.popup-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 80vw;
  min-height: 250px;
  background: #f5e2b8;
  border: 1px solid #b08a4a;
  padding: 30px 20px 20px 20px;
  box-sizing: border-box;
  z-index: 5001;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 24px;
  line-height: 1;
  cursor: url("cursor-click.png") 12 12, pointer;
}

.popup-textblock {
  color: #282A36;
}

.popup-textblock h2 {
  margin-top: 0;
}