@font-face {
  src: url("https://www.axis-praxis.org/fonts/webfonts/MetaVariableDemo-Set.woff2")
    format("woff2");
  font-family: "Meta";
  font-style: normal;
  font-weight: normal;
}

body {
  box-sizing: border-box;
  margin: 0;  
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: #1f1f1f;
  width: 100vw;
  height: 100vh;
}

main {
  transition: all 0.5s;
  -webkit-text-stroke: 2px #d6f4f4;
  font-variation-settings: "wght" 900, "ital" 1;
  font-size: 5rem;
  text-align: center;
  color: transparent;
  font-family: "Meta", sans-serif;
  text-shadow: 6px 6px 0px #ED80B0,
    9px 9px 0px #8ADDFB,
    12px 12px 0px #8AC0B4,
    15px 15px 0px #68AEC8,
    21px 21px 6px #AC84E7;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

main:hover {
  font-variation-settings: "wght" 100, "ital" 0;
  text-shadow: none;
}
