@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* General */
body {
    font-family: 'Roboto', sans-serif; 
    background-color: #f5f5f5; 
    color: #333; 
    margin: 0;
    padding: 0;
    padding-bottom: 120px; /* Espacio para el banner flotante */
}

/* Títulos */
h1 {
    font-size: 2.5em;
    text-align: left;
    margin: 20px 0;
}

h1 img {
    vertical-align: middle;
    margin-right: 10px;
}

h2 {
    font-size: 1.8em;
    color: #333;
    margin: 20px 0 10px;
}

/* Menú */
ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
}

ul li {
    display: inline-block;
    margin: 0 10px;
}

ul li a {
    font-size: 1.2em;
    color: #333;
    text-decoration: underline;
    transition: all 0.3s ease;
}

ul li a:hover {
    font-weight: bold;
    text-decoration: none;
    color: #000;
}

/* Artículos */
article {
    background-color: white;
    padding: 20px;
    margin: 20px auto;
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

article img, 
article video {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

article h2 {
    font-size: 1.5em;
    color: #2c2c2c;
}

article:hover {
    background-color: #000;
    color: white;
}

/* Footer */
footer {
    background-color: #c9d2d0;
    color: #31231e;
    text-align: center;
    padding: 20px;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

footer a {
    color: #31231e;
    text-decoration: underline;
}

footer a:hover {
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    article {
        width: 90%;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    ul li {
        display: block;
        margin-bottom: 10px;
    }
}