/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/

@import url('./base/variables.css');
@import url('./base/typography.css');
@import url('./base/colors.css');
@import url('./base/bootstrap_clases.css');
@import url('./utilities/spacing.css');
@import url('./base/estilos.css');

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: rgba(var(--font-color), 1);
    background-color: #fff;
}

body {
    min-height: 100vh;
}

a {
    color: rgba(var(--base-blue), 1);
}

    a:hover {
        color: rgba(var(--link-hover-blue), 1);
    }

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 34;
}

.white-container {
    background-color: #fff;
}