body {
  justify-content: center;
  align-items: center;
  background: #121212;
  display: flex;
  height: 100vh;
  padding: 0;
  margin: 0;

}


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

    .total img {
      width: 100px;
      height: 100px;
      object-fit: contain;
      animation: pulse 1.5s infinite ease-in-out;
    }

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