@import url("variables.css");
@import url('https://fonts.googleapis.com/css2?family=Liter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

<!-- Generales

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;

    font-family: "Liter", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 23px;
    font-size: 18px;

    color: var(--noNegro);
}

a {
    text-decoration: none;
}

a:hover {
    color: #DDD;
}

.documento {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 50px;
    padding-top: 120px;
    z-index: 0;
}

.ajuste {
    margin: 0px auto;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}

.celdaMedia {
    width: 100%;
    height: 100%;
}

.celdaTercio {
    width: 33%;
}

.celdaDosTercios {
    width: 66%;
}

.centrado {
    text-align: center;
    margin: auto;
}

.izquierda {
    text-align: left;
}

.derecha {
    text-align: right;
}

.negrita {
    font-weight: bold;
}

.texto {
    font-size: var(--textoNormal);
}

.textoMini {
    font-size: var(--textoMini);
}

.textoDestacado {
    font-size: var(--textoDestacado);
    font-weight: bold;
}

.textoTitulo {
    font-size: var(--textoTitulo);
}

.textoSuper {
    font-size: var(--textoSuper);
}
