@keyframes splash-loading {
  from,
  to {
    scale: 1;
  }

  50% {
    scale: 1.3;
  }
}

* {
  box-sizing: border-box;
}

body {
  max-width: 100vw;
  overflow-x: hidden;
}

html {
  color-scheme: light;
}

.loaded .splash-screen {
  pointer-events: none !important;
  filter: opacity(0) !important;
  /* transition-duration: 4s !important; */
}

.loaded .splash-screen__image {
  transition: 0.2s ease-in;
  /* filter: opacity(0) !important; */
  transform: scale(0) !important;
  transition-property: top, filter, transform;
  /* top: 35px !important; */
}

a {
  text-decoration: none !important;
}

* {
  /* outline: red 1px auto; */
}