/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }
  
  .parallax {
    /* Image Background */
    background: url('image.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    position: relative;
  }
  
  .text-container {
      /* Position text in the center */
      position: absolute;
      top: 75%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: right; /* Align text to the right */
      color: white;
      text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
  }
  
  h1 {
    font-size: 7rem;
    margin-bottom: 0.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  @media screen and (max-width: 768px) {
    h1 {
      font-size: 3rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    p {
      font-size: 1rem;
    }
  }
  