body {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.room {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/reels.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: black;
  transition: filter 0.05s linear;
}


.fol {
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  z-index: 10;


}

.fol.folder1 {
  left: calc(383 / 1920 * 100%);
  top: calc(365 / 1080 * 100%);
  width: calc(565 / 1920 * 100%);
  height: calc(311 / 1080 * 100%);
  background-image: url('assets/reel1623.png');
}

.fol.folder2 {
  left: calc(986 / 1920 * 100%);
  top: calc(383 / 1080 * 100%);
  width: calc(572 / 1920 * 100%);
  height: calc(291 / 1080 * 100%);
  background-image: url('assets/reeleasterman.png');
}

.fol.folder3 {
  left: calc(408 / 1920 * 100%);
  top: calc(504 / 1080 * 100%);
  width: calc(532 / 1920 * 100%);
  height: calc(170 / 1080 * 100%);
  background-image: url('assets/reelbesties.png');
}

.fol.folder4 {
  left: calc(1018 / 1920 * 100%);
  top: calc(520 / 1080 * 100%);
  width: calc(502 / 1920 * 100%);
  height: calc(144 / 1080 * 100%);
  background-image: url('assets/reelidrick.png');
}

.over{
  left: calc(0 / 1920 * 100%);
  top: calc(660 / 1080 * 100%);
  width: calc(1920 / 1920 * 100%);
  height: calc(420 / 1080 * 100%);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
  pointer-events: none;
}


.fol {
  transition: transform 0.2s ease, filter 0.2s ease;
}

.fol:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  cursor: pointer;
}