/* ------------------------------------------------------------------
 * Fichero:  pedro.css
 * Objetivo: Hoja de estilos de Marta
 * Fecha:    M.17.12.2019
 * Autor:    Pedro Reina <pedro@pedroreina.net>
--------------------------------------------------------------------*/

/* El contenedor de las flechas y la imagen */

DIV.contenedorflex
  {
  display: flex;
  justify-content: center;
  align-items: center;
  }

/* El contenedor de la imagen */

DIV.imagen
  {
  margin-right: 20px;
  margin-left: 20px;
  }

/* Las flechas */

SPAN.enlace
  {
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
  }

SPAN.enlace:hover
  { background-position: 0 -32px; }

SPAN.enlace:active
  { background-position: 0 -64px; }
