*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
  
body{
    background-color: rgb(255, 255, 255);
}

.texto{
    font-family:'Courier New';
    font-size: large;
}
.cont-temporizador{
    display: flex; 
    justify-content: center;   
}
  
.cont-temporizador .bloque{
    margin: 0px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.cont-temporizador .bloque div{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(80, 80, 80);
    box-shadow: 0px 0px 6px 2px #727272 inset;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    width: 100px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 5px;
}
  
.cont-temporizador .bloque p{
    font-size: 11px;
    font-weight: bold;
    color: #000000;
}

.animate {
    background-image: url(img/logo-pac-small.png),
      url(http://desarrollolibre.net/public/images/example/css/71/plain.png),
      url(http://desarrollolibre.net/public/images/example/css/71/clouds.png);
    background-position: 100px 100px, 0 0, -400px 10px;
    background-repeat: no-repeat, no-repeat, repeat;
    animation: animated 8s linear infinite;
    -webkit-animation: animated 8s linear infinite;
    width: 700px;
    max-width: 90%;
    height: 190px;
    margin: 0 auto;
  }
  
  @keyframes animated {
    0% {
      background-position: 100px 120px, -400px 10px, 0 0;
    }
    50% {
      background-position: 100px 100px, -400px 10px, 50% 0;
    }
    100% {
      background-position: 100px 120px, 700px 10px, 100% 0;
    }
  }
  
  @-webkit-keyframes animated {
    0% {
      background-position: 100px 120px, -400px 10px, 0 0;
    }
    50% {
      background-position: 100px 100px, -400px 10px, 50% 0;
    }
    100% {
      background-position: 100px 120px, 700px 10px, 100% 0;
    }
  }
  