body {
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.anim,
.anim svg {
  position: relative;
  width: 100%;
  height: 100%;
}

.anim path {
  stroke-width: 2;
  opacity: 0.2;
}

.overlay {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.33);
  z-index: 2;
}

.text-wrapper {
  font-family: sans-serif;
  display: flex;
  height: 100%;
  width: 800px;
  max-width: 90%;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 3;
  opacity: 1;
}

.text-wrapper h1 {
  font-size: 2.4rem;
}

.text-wrapper h1,
.text-wrapper h2 {
  color: white;
  font-weight: 700;
}

.raise {
  --color: #ffa260;
  --hover: #e5ff60;
}

.raise:hover,
.raise:focus {
  box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
  -webkit-transform: translateY(-0.25em);
  transform: translateY(-0.25em);
}

button {
  background: none;
  border: 2px solid;
  font: 300 1em sans-serif;
  color: white;
  line-height: 1;
  margin: 0.5em;
  padding: 1em 2em;
  cursor: pointer;
  color: var(--color);
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

button:hover,
button:focus {
  border-color: var(--hover);
  color: #fff;
}
