<style>
        /* Estilos Generales */
        body {
            background-color: #f0f0f0;
            font-family: Arial, sans-serif;
        }

        /* Contenedor del Menú - Fondo Negro */
        .main-menu {
            background-color: #000;
            padding: 20px;
            text-align: center;
            border-radius: 5px;
        }

        /* Estilo de los elementos de lista */
        .menu-list {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            gap: 20px; /* Espacio entre items */
        }

        /* Estilo del enlace y la imagen */
        .menu-item {
            text-decoration: none;
            color: white; /* Texto en color blanco */
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: transform 0.3s;
        }

        .menu-item:hover {
            transform: scale(1.05); /* Efecto al pasar el mouse */
        }

        .menu-item img {
            width: 100px; /* Tamaño de la imagen */
            height: 100px;
            object-fit: cover;
            border-radius: 50%; /* Imagen circular */
            border: 2px solid white; /* Borde blanco */
            margin-bottom: 10px;
        }
    </style>