* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  h2 {
    position: relative;
    margin: 20px auto;
    padding: clamp(10px, 3vw, 30px);
    max-width: min(90vw, 800px);
    width: 100%;
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5em);
    font-family: 'Comic Sans MS', 'Brush Script MT', cursive;
    color: white;
    background: #39008b5e;
    border: 4px solid #4FD1C5;
    border-radius: 20px;
    /* animation: float 3s ease-in-out infinite; */
  }
  
  @media (min-width: 768px) {
    h2 {
      top: -287px;
    }
  }
  
  h2::before, h2::after {
    content: '★';
    position: absolute;
    color: #FFD93D;
    font-size: clamp(1rem, 3vw, 1.5rem);
    top: 50%;
    transform: translateY(-50%);
  }
  
  h2::before {
    left: 10px;
  }
  
  h2::after {
    right: 10px;
  }
  
  .character {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
  }
  
  .h5p-cp-navigation{
    position: absolute;
    bottom: 82px;
    z-index: 1;
}

  
  .start-button {
    min-width: min(90vw, 300px);
    min-height: 60px;
    display: inline-flex;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(16px, 3vw, 22px);
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #313133;
    background: linear-gradient(90deg, rgba(129,230,217,1) 0%, rgba(79,209,197,1) 100%);
    border: none;
    border-radius: 1000px;
    box-shadow: 12px 12px 24px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: clamp(8px, 2vw, 10px);
  }
  
  .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  
  .start-button::before {
    content: '';
    border-radius: 1000px;
    min-width: calc(100% + 12px);
    min-height: calc(100% + 12px);
    border: 6px solid #00FFCB;
    box-shadow: 0 0 60px rgba(0,255,203,.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out;
  }
  
  .start-button:hover {
    background-color: #45a049;
    /* animation: wiggle 0.5s; */
  }
  
  .start-button:hover, 
  .start-button:focus {
    color: #313133;
    transform: translateY(-6px);
  }
  
  .start-button:hover::before, 
  .start-button:focus::before {
    opacity: 1;
  }
  
  .start-button::after {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #00FFCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .start-button:hover::after, 
  .start-button:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: min(300px, 90vw);
      height: min(300px, 90vw);
      opacity: 0;
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
  }
  
  /* Media Queries */
  @media screen and (max-width: 480px) {
    .start-button {
      min-width: 250px;
      font-size: 18px;
    }
    
    h2 {
      margin: 15px auto;
      padding: 10px 20px;
    }
  }
  
  @media screen and (max-width: 320px) {
    .start-button {
      min-width: 200px;
      font-size: 16px;
    }
 
  }
  