  html{
    scroll-behavior:unset;
    font-family: "Times" , bold;
    color: rgb(0, 0, 0);
    font-size: 19pt;
    width: 100%;
    height: 100%;
  }
  body {
    background-image: url("images/landscape.jpg");
    background-color: rgba(255,255,255,0.4);
    background-blend-mode: lighten;
    background-size: cover;
    background-repeat:no-repeat;
    background-attachment: fixed;
    margin: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .navigation {
    display: block;
    visibility: visible;
    scrollbar-width: none;
    position: fixed;
    left: 0;
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 100%;
    width: auto;
    background-color: #005e00;
    overflow: auto;
    white-space: nowrap;
    color: white;
    scroll-behavior: smooth;
  }
  a {
    text-decoration: none;
    color: white;
  }
  a:visited{
    text-decoration: none;
  }
  .link {
    color: rgb(0, 0, 0);
  }
  .banner{
    height: 350px;
  }
  .nav_element{
    display: flex;
    flex-direction: column;
    color: white;
    text-align: left;
    padding: 5px;
    text-decoration: none;
  }
  .nav_element:hover{
    background-color: #008d00;
  }
  .nav_element a{
    width: 100%;
  }
  .center {
    display:grid;
    text-align: center;
    height: inherit;
  }
  .textbox {
    text-align: left;
    padding: 24px;
    background-color: rgb(255,255,255,0.5);
    width: 70%;
  }
  .images{
    display: flex;
  }
  .image {
    height: 500px;
  }
  .product {
    display: block;
    border:2px solid black;
  }
  .description {
    color: rgb(0, 0, 0);
  }
  .contactdata {
    width: 70%;
    text-align:left; 
    padding:24px; 
    background-color: 
    rgb(255,255,255,0.5); 
  }
  .map {
    width: 90%;
    border:2px solid black;
  }
  .button{
    background-color: #005e00; /* Green */
    border:2px solid black;
    font-family: "Times" , bold;
    color: rgb(255, 255, 255);
    width: 100px;
    padding: 5px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
  }
  .topBar{
    display: none;
    visibility: collapse;
    background-color: #005e00;
    width: 100%;
    padding: 20px;
    position: fixed;
    top: 0;
  }
  .navButton{
    display: none;
    visibility: collapse;
  }

  @media screen and (max-width: 800px) {
    body{
      margin: 0;
    }
    .header{
      margin-top: 100px;
    }
    .navigation{
      display: none;
      scrollbar-width: inherit;
      visibility: collapse;
      margin-top: 69px;
      padding-top: 10px;
      padding-bottom: 10px;
      height: 100%;
      width: auto;
      background-color: #005e00;
      overflow: auto;
      overflow-x: hidden;
      white-space: nowrap;
      color: white;
      scroll-behavior: smooth;
    }
    .banner{
      height: 100%;
      width: 100%;
    }
    .product{
      width: 400;
    }
    .button{
      display: none;
    }
    .image{
      height: auto;
      width: 50%;
    }
    .topBar{
      display: block;
      visibility: visible;
    }
  }
  /* Smartphones (landscape) ----------- */
  @media only screen 
  and (max-width : 487px) {
    .telmail{
      font-size: 18px;
    }
    .textbox{
      font-size: 18px;
    }
    .header{
      font-size: 35px;
    }
  }