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


html {
    font-size: 62.5%; /* 62.5% de 16px es 10px */
    overflow-x: hidden;
    width: 100%;
  }

  body{
    overflow-x: hidden;
    width: 100%;
    background-color: #f4f4f4;
  }


  /*GLOBAL STYLES*/

  /*BUTTONS*/

.btn-global{
  animation: pulse 1.5s infinite;
  background-color: #e0280a;
  border: none;
  color: #fff;
  font-family: lato, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  max-width: 20rem;
  transition: all 1s ease-in-out;
  width: 50%;
}

.btn-global:hover{
  background-color: #fff;
  color: #e0280a;
  font-weight: 700;
}

@keyframes pulse {
  0% { transform: scale(1); }
  25% { transform: scale(1.05); }
  50% { transform: scale(1.2); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
