body{
    background-color: #fffffd;
}

.portada {
    margin-bottom: 6rem;
}

.card {
            margin-bottom: 2rem;
            margin-top: 2rem;
            border: none; /* Elimina los bordes de la tarjeta si no los necesitas */
        }
.card img {
            width: 100%;
            height: auto;
            display: block;
        }
.card-body h2 {
            font-family: Roboto;
            font-weight: 200;
            font-size: 1.5rem;
            line-height: 1.2;
            color: #24360b;
        }

.card-body h3 {
            font-family: Roboto;
            font-weight: 200;
            font-size: 1.2rem;
            color: #3b1eb6; /* Color para el autor */
            text-shadow: none;
        }

.card-body h4 {
            font-family: Roboto;
            font-weight: 300;
            font-size: .9rem;
            color: #686c70; /* Color para el autor */
        }

.card-body h2 a {
    text-decoration: none;
    color: #3b1eb6;
}

.card-body h2 a:hover {
    color: #aBff33;
    font-family: Roboto;
    font-weight: 600;
    text-shadow: 2px 2px #969595;
}

.footer {
            background-color: #000305; /* Color de fondo oscuro */
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

.footer .logos {
            height: 1rem;
            margin-bottom: 1rem;
        }

.footer .direccion {
            font-family: Roboto;
            font-size: .9rem;
            font-weight: 100;
            color: #f6f7f5;
}

.footer .logos2 {
            height: 3rem;
            margin-top: 1rem;
        }

.footer-menu-container {
            list-style: none;
            padding: 0;
            display: flex;
            justify-content: center;
            font-family: Roboto;
            font-weight: 100;
            font-size: .9rem;
            gap: 1rem; /* Espacio entre los elementos del menú */
            flex-wrap: wrap; /* Permite que los elementos se envuelvan en pantallas pequeñas */
        }

.footer-menu-container a {
            color: white;
            text-decoration: none;
            padding: 0.5rem;
            font-family: Roboto;
            font-family: 100;
        }

.footer-menu-container a:hover {
            text-decoration: none;
            color: #aBff33;
        }

.footer-menu-container .menu-item::after {
            content: "|";
            margin-left: 1rem;
        }
        
.footer-menu-container .menu-item:last-child::after {
            content: none;
        }

