/* Reset de estilos */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline;
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
color: #005abb;
}

.white{
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Encabezado */
header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
}

/* Cuerpo del artículo */
article {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

article h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

article p {
    margin-bottom: 15px;
}

article img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

article a {
    color: #007bff;
}

/* Listas */
ul, ol {
    margin-bottom: 15px;
}

/* Estilos para el footer */
footer {
    background-color: #f2f2f2;
    padding: 20px 0;
    text-align: center;
}

.blackFooter{
    background-color: #252525;
    padding: 20px 0;
    text-align: center;
}

.footer-social-media ul {
    list-style-type: none;
    padding: 0;
}

.footer-social-media ul li {
    display: inline-block;
    margin: 0 10px;
}

.footer-social-media ul li img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

.footer-social-media ul li img:hover {
    transform: scale(1.1);
}

.center {
    text-align: center;
}

.better-a {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #252525;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.better-a:hover {
    background-color: #464646;
}