.hero {
    position: relative;
    width: 100%;
    min-height: 900px;
    overflow: visible;
    text-align: center;
    padding-top: 5rem;
  }
  #blobCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 1;
    display: block;
  }
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-text h1 {
    font-size: 5rem;
    margin: 0 0 1rem;
  }
  .hero-text p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  .hero-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 300px;
    height: auto;
    margin: 3rem auto 2rem;
  }
  .about-me-text {
    position: relative;
    z-index: 2;
    width: 300px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .about-me-text a {
    color: #FFC331;
    text-decoration: none;
  }
  

  @media (max-width: 600px) {
    .hero {
      min-height: 600px;
    }
    .hero-text h1 {
      font-size: 2.5rem;
    }
    .hero-image {
      width: 220px;
      margin-bottom: 1.5rem;
    }
    .about-me-text {
      width: 220px;
    }
    #blobCanvas {
      height: 70%;
    }
  }