html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: 'Open Sans', 'Segoe UI', sans-serif;
    height: 100%;
  }

  body {
    background: linear-gradient(to bottom, #fdf6f0, #f2e3ff);

  }

  canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .container {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4b0082;
  }

  h1 {
    font-family: "Slackey", sans-serif;
    font-size: 2rem;
    color: #4b0082;
    margin: 1rem 0 0.5rem;
    font-weight: 400;
    font-style: normal;
  }

  p {
    font-size: 1.2rem;
    color: #444;
  }

  .ink-drop {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-25px);
    }
  }

  footer {
    position: absolute;
    bottom: 1rem;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
  }