body {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        background-color: #f5f5f5;
        margin: 0;
        padding: 0;
    }

    .black-box {
        background-color: #333;
        color: white;
        padding: 80px 0;
        text-align: center;
        margin-bottom: -60px;
        margin-top: -80px;
    }

    #header .logo,
    #header a {
        color: white;
        text-decoration: none;
        font-size: 1.5em; /* Tamaño de fuente más pequeño */
    }

    #header {
        background-color: #222;
        padding: 20px 0;
        text-align: center;
    }

    #header .logo {
        font-size: 2em;
        font-weight: bold;
    }

    .grid-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        justify-items: center;
        padding: 20px;
    }

    .box {
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .box:hover {
        transform: translateY(-5px);
    }

    .box .image.fit img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-bottom: 1px solid #ddd;
    }

    .box .content {
        padding: 20px;
    }

    .box h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: #333;
    }

    .box p {
        font-size: 1em;
        color: #666;
    }
    
    .icons {
        list-style-type: none;
        padding: 0;
    }

    .icons li {
        display: inline-block;
        margin: 0 10px;
    }

    .icons a {
        color: #fff;
        font-size: 1.5em;
    }
