/*Contacto*/
/*@import url('https://fonts.googleapis.com/css?family=Rubik|Sriracha&display=swap');*/

body { background-color:#000000;
   box-sizing: border-box;
   width:320px;
   height:480px;     
   margin:auto;
   padding:0;
   font-family: 'Sriracha', sans-serif;
}

.flip-card {
  margin: 10% auto;
  background-color: transparent;
  width: 320px;
  height: 480px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 1.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}


.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  background-image: url("yo_s.jpg");
  background-repeat:no-repeat;
  background-position: cover;
}

.flip-card-back {
  background-color:transparent;
  color: white;
  transform: rotateY(180deg);
}
a:link, a:visited {
     background-color: transparent;
     text-align: center;
     text-decoration: none;
     color:lightblue;
     }
   a:hover, a:active {
     background-color: transparent;
     color:fuchsia;
     coursor:pointer;
     }