@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Roboto+Serif:ital,opsz,wght@0,8..144,100..900;1,8..144,100..900&family=Rubik+Moonrocks&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}

.bloque {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content:center;
    align-items: center;
   
}

.cont-txt {
    text-align: center;
    width: 90%;
    min-width: 300px;
}

.tl {
  font-family: "Rubik Moonrocks", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(3vw + 2em);
  color: goldenrod;
  
}

.sub-tl {
  font-family: "Roboto Serif", serif;
  font-weight: 600;
  font-size: calc(1vw + 1em);
  text-align: center;
  margin-bottom: 30px;
}

.txt, .link {
  font-family: "Roboto Serif", serif;
  font-weight: 400;
  font-size: calc(1vw + 1em);
  text-align: center;
}
.link {
  text-decoration: none;
  display: inline-block;
  margin: auto;
  margin-top: 30px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(0.6vw + 1em);
  padding: 10px 20px;
  border: 2px solid #000;
  background-color: red;
  color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 8px #000;
  cursor: pointer;

}

/* aca arranca el movimiento de iconos*/

@keyframes mov-btn {
    0% {
        
        scale: 100%;
        
    }
    10% {
        
        scale: 95%;
        
    }
        100% {
        scale: 100%;
    
    }
}

.link {
    animation: mov-btn 1s infinite;

}

/* fin del movimiento*/