body {
  background: white;
  font-family: 'Open Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 200vh;
  background: linear-gradient(135deg, #060F3F 0%, #030510 100%);
  background-attachment: fixed;
}

.anchor {
  position: absolute;
  top: 100vh;
  width: 20px;
  height: 4px;
  background: currentcolor;
  opacity: 0;
}

.container {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
}

.headline {
  position: relative;
  padding: .4em .6em .45em;
  font-size: 3em;
color: white;
  line-height: 1;
  text-transform: uppercase;
}

.border {
  --size: 5px;
  position: absolute;
  background: currentcolor;
  -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--r));
          transform: translate(var(--tx), var(--ty)) rotate(var(--r));
  will-change: transform;
}
.border--top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--size);
}
.border--right {
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--size);
}
.border--bottom {
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--size);
}
.border--left {
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--size);
}

.letter {
  display: inline-block;
  -webkit-transform: translate(var(--tx), var(--ty)) rotate(var(--r));
          transform: translate(var(--tx), var(--ty)) rotate(var(--r));
  will-change: transform;
}
