* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body, #container {
  width: 100%;
  height: 100%;
}

body, #container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading svg {
  width: 100px;
  height: 100px;
}

.loading {
  transform: 
    scale(5);
}

.loading svg g {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.loading svg g#back {
  stroke: #ff4d5033;
}


@keyframes dash {
  from {
    opacity: 1;
  }

  to {
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
}