body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set minimum height to full viewport height */
  }
  
  .container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex: 1; /* Fill remaining space */
  }
  
  .header {
    background-color: #f5f5f5;
    color: #fff;
    text-align: center;
    padding: 20px 0;
  }
  
  .header h1 {
    margin: 0;
    font-size: 50px;
  }
  
  .header h1 span {
    color: #ff4500; /* Change color as needed */
  }
  
  .footer {
    background-color: #d8d8d8;
    color: #999999;
    text-align: center;
    padding: 0px 0;
    margin-top: auto; /* Push footer to the bottom */
  }

  h1 {
    color: #333;
  }
  
  .button-container {
    margin-top: 20px;
  }
  
  .button-49 {
    width: 150px;
    height: 76px;
    line-height: 78px;
    font-size: 20px; /* Default font size */
    font-family: 'Bebas Neue', sans-serif;
    background: linear-gradient(45deg, transparent 5%, #ff802c 5%);
    border: 0;
    color: #fff;
    letter-spacing: 3px;
    box-shadow: 6px 0px 2px #ffbb6e;
    outline: transparent;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    margin-right: 10px;
    cursor:pointer;
  }
  
  .button-49 span {
    position: relative;
    z-index: 2;
  }
  
  /* Media query for smaller screens */
  @media (max-width: 568px) {
    .button-49 {
      font-size: 12px; /* Decrease font size for smaller screens */
      width: 120px; /* Decrease button width for smaller screens */
      height: 60px; /* Decrease button height for smaller screens */
      line-height: 62px; /* Adjust line height accordingly */
    }
  }
  
  .button-49:after {
    --slice-0: inset(50% 50% 50% 50%);
    --slice-1: inset(80% -6px 0 0);
    --slice-2: inset(50% -6px 30% 0);
    --slice-3: inset(10% -6px 85% 0);
    --slice-4: inset(40% -6px 43% 0);
    --slice-5: inset(80% -6px 5% 0);
    
    content: 'ALTERNATE TEXT';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 3%, #00E6F6 3%, #00E6F6 5%, #ff3c01 5%);
    text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #00E6F6;
    clip-path: var(--slice-0);
  }
  
  .button-49:hover:after {
    animation: 1s glitch;
    animation-timing-function: steps(2, end);
  }
  
  @keyframes glitch {
    0% {
      clip-path: var(--slice-1);
      transform: translate(-20px, -10px);
    }
    10% {
      clip-path: var(--slice-3);
      transform: translate(10px, 10px);
    }
    20% {
      clip-path: var(--slice-1);
      transform: translate(-10px, 10px);
    }
    30% {
      clip-path: var(--slice-3);
      transform: translate(0px, 5px);
    }
    40% {
      clip-path: var(--slice-2);
      transform: translate(-5px, 0px);
    }
    50% {
      clip-path: var(--slice-3);
      transform: translate(5px, 0px);
    }
    60% {
      clip-path: var(--slice-4);
      transform: translate(5px, 10px);
    }
    70% {
      clip-path: var(--slice-2);
      transform: translate(-10px, 10px);
    }
    80% {
      clip-path: var(--slice-5);
      transform: translate(20px, -10px);
    }
    90% {
      clip-path: var(--slice-1);
      transform: translate(-10px, 0px);
    }
    100% {
      clip-path: var(--slice-1);
      transform: translate(0);
    }
  }
  
  @media (min-width: 568px) {
    .button-49 {
      width: 200px;
      height: 86px;
      line-height: 88px;
    }
  }
  
.logo {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    margin: 20px auto; /* Adjust margin as needed */
    display: block;
  }