.parallax {
    height: 100vh;
    background-image: url("../dstudio/webp/back.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .content {
    color: white;
    text-align: center;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  h1 {
    font-size: 3rem;
    margin: 0;
  }
  .scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
  }
  .dummy-content {
    height: 100vh;
    background-color: #f0f0f0;
    padding: 2rem;
  }