body {
  background-color: burlywood;
  color: green;
  margin: 0%;
}

main {
  margin: 5% 15%;
}

/*navbar*/
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: green;
}

nav ul li {
  float: left;
}

nav ul li a {
  display: block;
  color: burlywood;
  text-align: center;
  padding: 20px 22px;
  text-decoration: none;
  text-transform: uppercase;
}

nav a img {
  height: 30px;
}


nav li a:hover:not(.active) {
  background-color: burlywood;
  color: green;
}

nav li a.active {
  background-color: green;
}

nav li.right {
  float: right;
}

nav li.right a {
  padding: 12px;
}

@media screen and (max-width: 600px) {

  nav li.right,
  nav li {
    float: none;
  }
}

/*produkt*/
div.product {
  border: 1px solid green;
  border-radius: 2%;
  background-color: burlywood;
  align-items: center;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  padding-bottom: 15px;
  margin: 2%;
}

div.product:hover {
  border: 5px solid green;
}

div.product p {
  text-align: left;
}


div.product img {
  height: auto;
  width: 80%;
  padding: 9px;
  margin: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.product div.desc {
  padding: 15px;
  text-align: center;
  color: green;
}


.product_button {
  background-color: green;
  border: none;
  color: burlywood;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.2s;
  border-radius: 2%;
}

.product_button:hover {
  border: 2px solid green;
  background-color: burlywood;
  color: green;

}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}



/*impressium*/
.grid-impressium {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25%;
  padding: 0px;
  margin: 0px;
  width: 100%;
  background-color: green;
  color: burlywood;
}

.grid-impressium>div {
  padding: 0% 2%;
}

.grid-impressium>div>a>img {
  width: 25px;
  height: auto;
  border-radius: 2%;
}


@media only screen and (max-width: 500px) {
  .grid-impressium {
    grid-template-columns: 100%;
  }
}