* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
  list-style: none;
}
html,
body {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
html {
  background-color: #000;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* disable overflow bounce in safari*/
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
*:focus,
*:active {
  outline: none;
}
svg {
  width: 600px;
  max-width: calc(100vw - 64px);
  animation-name: enter;
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(10px);
}
@keyframes enter {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
