:root {
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
}

body {
  margin: 0;
  /* background: #f4f4f1; */
  background: #eee;
  /* color: #ccb28b; */
  color: white;

  font-family: "bodoni-pt-variable", sans-serif;
  font-variation-settings: "wght" 400, "opsz" 40;
  text-transform: uppercase;
  line-height: 1;
}

h1 {
  margin: 0;
}

.bg-wrap,
.title-wrap,
.text-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
}

.title-wrap,
.text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  opacity: 0;
  transition: 0.25s var(--ease-out-cubic);
}

.bg-wrap {
  height: 100%;
  mix-blend-mode: multiply;
}

.ealge {
  width: 100%;
  height: 100%;
  object-fit: contain;

  transform: translateY(-25px);

  /* animation: animation 3s var(--ease-out-cubic) forwards; */
  /* opacity: 0.03; */
  opacity: 0;
}

.title-wrap {
  height: 100%;
}

.title-wrap h1 {
  font-size: 13vw;
  font-weight: 400;
  word-spacing: 0.135em;
  letter-spacing: -0.023em;
}

@media (max-width: 768px) {
  .title-wrap h1 {
    font-size: 25vw;
    font-weight: 400;
  }
}

.text-wrap {
  padding: 50px;
  box-sizing: border-box;

  font-size: max(30px, 2.25vw);
  font-variation-settings: "wght" 400, "opsz" 60;
  word-spacing: 0.12em;
  letter-spacing: 0.1em;
  text-align: center;

  color: #cacaca;
}

@media (max-width: 768px) {
  .text-wrap {
    font-size: 25px;
    line-height: 1.1;
    font-variation-settings: "wght" 400, "opsz" 40;
  }
}

.a {
  letter-spacing: 0.02em;
}

@keyframes animation {
  to {
    opacity: 0.2;
    /* filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.9));
    transform: scale(1.25); */
  }
}
