

body{
	margin: 0;
	 -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
}


.vista {
     width: 320px;
    height: 80px;
  
    float: left;

    border: 1px solid #fff;
    overflow: hidden;
    position: relative;
    text-align: center;
   
    cursor: default;
	
}
.vista .mascara, .vista .contenido {
    width: 320px;
    height: 80px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
	
}
.vista img {
  transition: all 0.4s ease-in-out 0.2s;
    opacity: 1;}
  
   .vista .mascara {
    opacity: 0;

	
    background-color: hsla(210,100%,34%,0.5);
    transition: all 0.4s ease-in;
    transform: scale(0) rotate(-180deg);
}

.vista h10 {
    
	 opacity: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    margin: 10px 10px 10px 10px;
    transition: all 0.5s ease-in-out;
	
	width:80%;
font-size:18px;

font-family: 'Marvel', sans-serif;
text-align:CENTER;
color:#fff;
	
	
}
.vista p {
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.vista a.informacion {
    opacity: 0;
    transition:all 0.5s ease-in-out;
}


.vista:hover img { 
    transform: scale(0); 
    opacity: 0;
    transition-delay: 0s;
} 
.vista:hover .mascara { 
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition-delay: 0.2s;
}
.vista:hover h10,
.vista:hover p,
.vista:hover a.informacion {
    opacity: 1;
    transition-delay: 0.5s;
}


.vista a.informacion:hover {
    box-shadow: 0 0 5px #000
}