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

  body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
  }

  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
  }

  .logo {
    width: 80px;
    height: 80px;
    background: url('/img/snapchat-logo-svgrepo-com.svg') no-repeat center center / contain;
    animation: heartbeat 2.5s infinite; /* Slowed down to 3s */
  }

  .bottom-text {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
  }

  .copyright {
    font-size: 12px;
    color: #888;
  }

  .brand {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 9px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
  }

  @keyframes heartbeat {
    0%, 100% {
      transform: scale(1);
    }
    25% {
      transform: scale(1.2);
    }
    50% {
      transform: scale(1);
    }
    75% {
      transform: scale(1.2);
    }
  }