/* Enfeite no container principal */

.container-principal::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(#f00, #f0f);
  clip-path: circle(25% at right 75%);

}
.container-principal::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(#2196f3, #e91e63);
  clip-path: circle(18% at 10% 65%);
}


/* Definição do tamanho do lottie */

.lottie > svg {
  max-height: 20vh;
}

