﻿/* Estilos comunes para todas las páginas */

body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: #333;
    margin: 10;
    padding: 10;
    line-height: 1.6;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1em;
    margin-bottom: 0.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 10px;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Estilos específicos para dispositivos móviles */
@media only screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }
}


