body {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    orange 20px,
    black 40px,
    orange 60px
  );
}

header {
  position: fixed;
  top: 30px;
  right: 40px;
  display: flex;
  gap: 40px;
  font-size: 20px;
  background: white;
  padding: 15px 25px;
  border: solid 1.5px black;
  border-radius: 50px;
}

#doors {
  padding: 120px 80px 20px 80px;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  height: 100%;
}

.door {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  cursor: pointer;
  height: 30vh;
}

.ghost {
  position: absolute;
  transform: scale(0);
}

@keyframes ghost {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  75% {
    transform: scale(100);
  }

  100% {
    opacity: 0;
  }
}
