
/****/
.square-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    background-color: transparent;
    color: white;
    font-size: 1vw;
    text-decoration: none;
    cursor: pointer;
    background: black;
    font-weight: bold;
  }
  .text-blod-upper{
    text-transform: uppercase;
    font-size: 1.2vw;

  }
  /* .{
    transition: background-color 0.3s ease;


  } */
  
  .add-button-animation:hover {
    background-color: black;
    /* animation: pulse 1s infinite; */
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  


