.parallax { 
    /* The image used */
    background-image: url("src/A.jpg");
  
    /* Set a specific height */
    height: 500px; 
  
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  

  .body {
      background-image: url("src/backstein.jpg");
      
      
      height: 500px; 

      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
  }

  .stick {
      overflow: hidden;
      position: -webkit-sticky;
      position: sticky;
      top:0;
  }

  .bg-dark-trans {
    background-color: rgba(34, 31, 31, 0.692);
    color: rgb(156, 136, 136);
  }

  a {
      color: rgb(170, 108, 58)!important;
      font-size: 2em;
  }

  p a {
      font-size: 1em;
  }

  a:hover {
    color: rgb(207, 159, 119)!important;
}