@charset "UTF-8";
/* Extra small devices */
@media only screen and (max-width: 575.98px) {
  /* Estilos específicos para telas menores */
}
/* Small devices */
@media only screen and (min-width: 576px) and (max-width: 767.98px) {
  /* Estilos para telefones maiores */
}
/* Medium devices */
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  html {
    width: 100vw;
    height: 100vh;
    font-size: 11px;
  }
}
/* Large devices */
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  html {
    width: 100vw;
    height: 100vh;
    font-size: 14px;
  }
}
/* Extra large devices */
@media only screen and (min-width: 1200px) {
  html {
    width: 100vw;
    height: 100vh;
    font-size: 16px;
  }
}