body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(51, 4, 22);
}

#main-content {
  width: 60%;
  height: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.holder {
  /* width: 80%;
  height: 80%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cat-image {
  width: 12em;
  height: auto;
  object-fit: contain;
}

#color-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.3;
    z-index: 1000;
}

#screen-blackout {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgb(41, 1, 5);
}