*, html {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.canvas {
  width: 100%;
  height: 100%;
}

.loading {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  color: #19314e;
}

.loading__logo {
  margin-bottom: 38px;
  width: 216px;
  height: 78px;
}

@media (min-width: 700px) {
  .loading__logo {
    width: 300px;
    height: 108px;
  }
}

.progress {
  display: flex;
  overflow: hidden;
  background-color: rgba(26, 247, 135, 0.14);
  margin: 0 auto 38px auto;
  width: 100%;
  border-radius: 9999px;
  height: 14px;
}

.progress__bar {
  background-color: rgb(26, 247, 135);
  width: 0%;
  border-radius: 9999px;
  transition: width 200ms ease-out;
}
