html {
  min-height: 100%;
  display: flex;
  justify-content: center;
}

body {
  background: rgb(42, 83, 197);
  background: radial-gradient(
    circle,
    rgba(42, 83, 197, 1) 0%,
    rgba(6, 5, 102, 1) 100%
  );
  min-height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: start;
  font-family: "Roboto"; /*"Open Sans", helvetica, arial, sans-serif;*/
  margin: 0;
}

.rive-animation {
  max-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
#canvas {
  max-width: 100%;
}

#timer {
  position: absolute;
  z-index: 333;
  font-size: 24px;
  /* font-weight: 100; */
  color: white;
  bottom: 25%;
  text-align: center;
  /* text-shadow: 0 0 20px #48c8ff; */
}

#timer > div {
  display: inline-block;
  min-width: 100px;
  max-width: 100%;
  text-align: left;
  font-size: 24px;

  span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
  }
}

@media screen and (max-width: 992px) {
  #timer {
    position: absolute;
    z-index: 333;
    font-size: 24px;
    color: white;
    bottom: 25%;
    text-align: center;
  }
  #timer > div {
    display: inline-block;
    min-width: 100px;
    max-width: 100%;
    text-align: left;

    font-size: 14px;
    min-width: 70px;

    span {
      color: #ffffff;
      font-weight: 400;
      font-size: 14px;
    }
  }
}
