<link rel="stylesheet" href="https://milibreria.neocities.org/css/texto/tama%C3%B1o-auto.css">

/* Tamaño base para todo el sitio */
html {
    font-size: 16px;
}

/* Encabezados */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5, h6 {
    font-size: 0.875rem;
}

/* Texto del cuerpo */
p, a, span {
    font-size: 0.875rem;
}

/* Botones */
button {
    font-size: 0.875rem;
}

/* Formularios */
form label {
    font-size: 0.75rem;
}

input, textarea, select, .btn-subir-archivo, form .archivo {
    font-size: 0.875rem;
}

/* Elementos de listas */
ul, ol {
    font-size: 0.875rem;
}

/* Leyendas e información secundaria */
small, .small-text {
    font-size: 0.75rem;
}

/* Ajustes adicionales */
body {
    line-height: 1.5;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

button, input, textarea {
    padding: 10px;
    border-radius: 5px;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Media query para tamaño intermedio (tabletas y laptops pequeñas) */
@media (min-width: 768px) and (max-width: 1024px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5, h6 {
        font-size: 1.125rem;
    }

    p, a, span {
        font-size: 1.125rem;
    }

    button {
        font-size: 1rem;
    }

    form label {
        font-size: 1rem;
    }

    input, textarea, select {
        font-size: 1rem;
    }

    ul, ol {
        font-size: 1.125rem;
    }

    small, .small-text {
        font-size: 0.875rem;
    }
}

/* Media query para tamaño grande (monitores grandes y pantallas de escritorio) */
@media (min-width: 1025px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }

    h5, h6 {
        font-size: 1.25rem;
    }

    p, a, span {
        font-size: 1.25rem;
    }

    button {
        font-size: 1.125rem;
    }

    form label {
        font-size: 1.125rem;
    }

    input, textarea, select {
        font-size: 1.125rem;
    }

    ul, ol {
        font-size: 1.25rem;
    }

    small, .small-text {
        font-size: 1rem;
    }

    body {
        line-height: 1.75;
    }
}