* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.splash-page {
  background: #131313;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.splash-image {
  max-width: 80%;
  height: auto;
  cursor: pointer;
  transition: transform 1.8s ease-in, opacity 1.8s ease, filter 1.8s ease;
}

.splash-pop {
  transform: scale(3);
  opacity: 0;
  filter: blur(4px);
}
