*{
    margin: 0;
    padding: 0;
}

div{
    background-image: url(1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

h1{
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    color: white;
    
}

p{
    margin-top: 15px;
    margin-bottom:15px;
    font-size: 26px;
    font-family: "Montserrat", sans-serif;
    color: white;
    font-weight: bold;
}

span{
    padding: 0px 10px;
    background-color: green;
}

span {
    display: inline-block; 
    animation: grow 2s ease-in-out infinite; 
  }

  @keyframes grow {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1); 
    }
    100% {
      transform: scale(1); 
    }
  }

  
  /* Estilos para pantallas pequeñas (móviles) */
  @media only screen and (max-width: 767px) {
    h1 {
      text-align: center;
      width: 90%;
    }
    
  }
  