﻿#contenedor { 
  width: 1024px;
  margin: 0 auto;
}

    .zoom{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width 1s, height 1s, transform 1s;
        -moz-transition: width 1s, height 1s, -moz-transform 1s;
        -webkit-transition: width 1s, height 1s, -webkit-transform 1s;
        -o-transition: width 1s, height 1s,-o-transform 1s;
    }

    .zoom:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tamaño con scale(2). */
        transform : scale(1.25);
        -moz-transform : scale(1.25);      /* Firefox */
        -webkit-transform : scale(1.25);   /* Chrome - Safari */
        -o-transform : scale(1.25);        /* Opera */
 
    }

.zoom2{
        /* Aumentamos la anchura y altura durante 2 segundos */
        transition: width 1s, height 1s, transform 1s;
        -moz-transition: width 1s, height 1s, -moz-transform 1s;
        -webkit-transition: width 1s, height 1s, -webkit-transform 1s;
        -o-transition: width 1s, height 1s,-o-transform 1s;
    }

    .zoom2:hover{
        /* tranformamos el elemento al pasar el mouse por encima al doble de
           su tamaño con scale(2). */
        transform : scale(1.15);
        -moz-transform : scale(1.15);      /* Firefox */
        -webkit-transform : scale(1.15);   /* Chrome - Safari */
        -o-transform : scale(1.15);        /* Opera */
 
    }
    
