/* --------- */
/* VARIABLES */
/* --------- */
/* ------- */
/* GENERAL */
/* ------- */
html {
  height: 100vh;
}

body {
  height: 100%;
  background-image: url("/$src/img/bg/splash1.png");
}

main {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: absolute;
  width: 50%;
  z-index: 2;
  top: 0;
  pointer-events: none;
}

.container {
  display: flex;
  padding-left: clamp(10%, 1.75vw, 20%);
  padding-right: clamp(10%, 1.75vw, 20%);
  margin-top: 4%;
}

.mecat_container {
  position: relative;
  width: auto;
  width: 22vw;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 3%;
}
.mecat_container img {
  width: 100%;
  transform: scaleX(-1);
  image-rendering: unset;
}

#mecat {
  position: relative;
  cursor: pointer;
}
#mecat_jaw {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: top 0.1s ease-in;
  pointer-events: none;
}
#mecat:hover + #mecat_jaw {
  top: 10%;
  transition: top 4s cubic-bezier(0.4, 0, 1, 1);
}

.box {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  font-family: kiwisoda, serif;
  font-size: clamp(1rem, 1.75vw, 1.75rem);
  padding: 0.75em;
  margin-top: 7%;
  line-height: 1em;
  max-width: 70%;
}
.box > *:nth-child(2) {
  margin-top: 1em;
  text-align: right;
}/*# sourceMappingURL=splash.css.map */