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

  body {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 90vh;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
    padding: 0 44px;
  }
  h5{
  font-size: 21px;
    margin-top: 133px;
    margin-bottom: 20px;
  }

  h6{
    font-size: 15px;
        margin-bottom: 40px;


  }
  .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: 16px;
    font-weight: 555;
    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);
    }
  }