html, body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
}

.root {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.svg-responsive {
  width: 100%;
  height: auto;
  max-width: 480px; /* Para limitar o tamanho máximo na web */
}

@media (max-width: 480px) {
  .svg-responsive {
    max-width: 240px; /* Para limitar o tamanho máximo no mobile */
  }
}
