@font-face {
  font-display: swap;
  font-family: 'Druk LCG';
  src:
    url('./assets/DrukLCG-Bold.woff2') format('woff2'),
    url('./assets/DrukLCG-Bold.woff') format('woff');
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}

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

html,
body {
  background-color: #cac3bb;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  width: 100vw;
}

.hero-img {
  height: 100vh;
  position: relative;
  width: 100vw;
}

.hero-img:after {
  background: linear-gradient(
    180deg,
    rgba(251, 0, 255, 0) 0%,
    rgb(36, 36, 36) 100%
  );
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

img {
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.container {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  padding: 2em;
  position: absolute;
  width: 100%;
}

.word {
  display: flex;
}

.word span {
  color: rgb(162, 31, 31);
  cursor: pointer;
  font-family: 'Druk LCG';
  font-size: 10vw;
  font-weight: bolder;
  text-transform: uppercase;
  transform-origin: bottom;
  transition: 400ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
