  /* Estilos generales para el cuerpo del documento */
        body {
            margin: 0;
            font-family: 'Segoe UI', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Estilos para el footer */
        .footer {
        
            text-align: center;
            align-items: center; /* Centra los elementos verticalmente */
            background-color: #020000; /* Un color más profesional */
            color: white;
            }
        
        /* Estilos para los enlaces dentro del footer */
        .footer a {
            color: rgb(32, 30, 30);
            text-decoration: none;
            text-align: center;
            transition: color 0.3s;
        }

        .boton:hover {
           background-color: turquoise;
        }

        /* Estilos para el botón/enlace de Inicio */
        .boton {
            width: 65px;
            height: 30px;
            border: 2px solid rgb(203, 142, 66);
            border-radius: 5px;
            margin-bottom: 15px;
            text-decoration: none; /* Asegura que no tenga subrayado */
        }