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

html, body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
}

.bg {
  background-image: url("./logo-transparent.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-attachment: fixed;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 100px;
}

h1 {
  --color-one: #009EE0;
  --color-two: #44768b;
  --stretch-multiplier: 2;
  font-size: clamp(2rem, 14vmin, 8rem);
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  display: grid;
  line-height: 1;
  text-align: center;
  background: linear-gradient(45deg, #009EE0, #44768b, #4d5152);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

[aria-hidden] {
  display: flex;
  gap: 0.02ch;
  align-items: center;
  background: linear-gradient(45deg, #009EE0, #44768b, #4d5152);
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
}

.stretch-o {
  height: 1.3ch;
  width: calc(var(--stretch) * 1.3ch);
  translate: 0 -0.01ch;
  border: 0.25ch solid black;
  border-radius: 1ch;
  transition: width 0.2s;
  position: relative;
}

h1 {
  --stretch: 1;
}

h1:hover {
  --stretch: var(--stretch-multiplier);
}

.stretch-o:after,
.stretch-o:before {
  content: "";
  border: 0.25ch solid var(--color);
  position: absolute;
  inset: -0.25ch;
  border-radius: 1ch;
  opacity: calc(-1 + var(--stretch));
  transition: opacity 0.2s;
}

.stretch-o:before {
  --color: var(--color-one);
}

.stretch-o:after {
  --color: var(--color-two);
  -webkit-mask: radial-gradient(circle at top left, #009EE0, transparent);
          mask: radial-gradient(circle at top left, #009EE0, transparent);
}/*# sourceMappingURL=index.css.map */