*{	margin:0px;
padding:0px;
}
.grande_div{
    height: 2000px;
    background-color: black; 
    /*width: 2000px;
    max-width: 1000px;*/
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    margin-bottom: 50px; 
    padding: 50px;
}

.titulo{
    background-color: yellow;
    /*width: 100%;
    max-width: 1000px;*/
    height: 90px;
    color: black;
    font-family: Viner Hand ITC;
    font-size: 90px;
    text-align: center;
    margin-bottom: 15px;
    padding-top: 55px;
}

.subtitulo
   {transform-style: preserve-3d;
  animation: anime 3s linear infinite;}

@keyframes anime {
  0% {transform: rotate(0deg);}
  100% {transform: rotatex(360deg);}
}

body {
    color: orange;
    font: 600 24px/24px Verdana;
    margin: 12px 15px;
 }
  .original,
  .box {
    border-radius: 6px;
  }
  .original {
    background: #eaeaed;
    border: 1px dashed #cecfd5;
    float: left;
    margin: 12px 15px;
  }
   .spin {
    cursor: pointer;
    transform-style: preserve-3d;
  }
  .spin:hover {
      animation: spin 5s linear infinite;
  }
  @keyframes spin {
    0% {
      transform: rotateY(0deg);
    }
    100% {
      transform: rotateY(360deg);
    }
  }
  .container {
    position: relative;
    width: 70%;
    float: right;
  }
  .image {
    display: block;
    width: 80%;
    height: center; 
  } 
  .overlay {
    position: absolute;
    top: 100;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 50%;
    opacity: 0;
    transition: .5s ease;
    background-color:black;
  }
  .container:hover .overlay {
    opacity: 1;
  }
  