

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  background: #03031b;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
/* global properties for buttons and SVG icons nested within */
button {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
}
button svg {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* animate the path and the circle in the output */
svg path,
svg circle {
  transition: all 1s linear;
}
