/* ESTILOS COMUNES A TODAS LAS PÁGINAS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: 0%;
    color: #000;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Aquí los estilos que se repiten en varias páginas */

/* Normalizar listas */
ul, ol {
    list-style: none;
}