body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
  }
  
  .parallax-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  
  .parallax-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transform: none; /* Fallback for non-JS users */
  }
  
  .ukiyo {
    position: absolute;
    width: 100%;
    height: auto;
  }
  
  .content {
    text-align: center;
    position: absolute;
    z-index: 2;
    color: white;
    text-shadow: 0 0 5px black;
  }
  
  section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
  }
  
  section h2 {
    font-size: 2rem;
    color: #333;
  }
  
  section p {
    font-size: 1rem;
    color: #666;
  }
  