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

.room {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('assets/turquoise.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(440 / 1920 * 100%);
  top: calc(216 / 1080 * 100%);
  width: calc(1082 / 1920 * 100%);
  height: calc(457 / 1080 * 100%);
  background-image: url('assets/josephine.png');
}

.fol.folder2 {
  left: calc(432 / 1920 * 100%);
  top: calc(257 / 1080 * 100%);
  width: calc(1098 / 1920 * 100%);
  height: calc(416 / 1080 * 100%);
  background-image: url('assets/Killian.png');
}

.fol.folder3 {
  left: calc(426 / 1920 * 100%);
  top: calc(290 / 1080 * 100%);
  width: calc(1111 / 1920 * 100%);
  height: calc(397 / 1080 * 100%);
  background-image: url('assets/Isaac.png');
}

.fol.folder4 {
  left: calc(419 / 1920 * 100%);
  top: calc(325 / 1080 * 100%);
  width: calc(1125 / 1920 * 100%);
  height: calc(354 / 1080 * 100%);
  background-image: url('assets/Easterman.png');
}

.over{
  left: calc(0 / 1920 * 100%);
  top: calc(633 / 1080 * 100%);
  width: calc(1920 / 1920 * 100%);
  height: calc(447 / 1080 * 100%);
  background-image: url('assets/filesoverlay.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2000;
}


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

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