html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}
*:focus, *::before:focus, *::after:focus {
  outline: none;
}

* {
  font-family: monaco, courier;
}

body {
  margin: 0;
  padding: 0;
}

h1 {
  margin: 0;
  padding: 1rem;
  font-family: "gigantic", monaco;
  font-size: 12vw;
  font-weight: 900;
  font-style: normal;
  color: MediumSpringGreen;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("https://assets.codepen.io/219932/halftone-clouds.png"), MediumSpringGreen;
  mix-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wrapper::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: MediumSpringGreen;
  opacity: 0.5;
}

svg {
  width: 98%;
  height: 100vh;
}

path {
  fill: DarkOliveGreen;
}
path:hover {
  fill: OliveDrab;
}