@font-face {
  font-family: 'textFont';
  src: url('../fonts/helvetica-regular.otf'); /*URL to font*/
}

@font-face {
  font-family: 'textFontBold';
  src: url('../fonts/helvetica-bold.otf'); /*URL to font*/
}


/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loginAnimation {
  0% {
    opacity: 0;
    transform: translateY(-8%);
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1); /* tamaño original */
  }
  50% {
    transform: scale(1.05); /* tamaño aumentado */
  }
  100% {
    transform: scale(1); /* tamaño original */
  }
}
/* End Animations */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button, span, a, p, input, select, option {
  text-decoration: none;
}
button, span, a, p {
  font-family: 'textFont';
}

button, span{
  color: #FFF;
}

p {
  display: inline;
}

.cursorPointer {
  cursor: pointer;
}
