h1
{
  font-size: 50px;
  text-align: center;
  font-weight: bold;
}
section
{
  display: block;
}

@media (min-width: 1000px)
{
  section
  {
    margin-left: 10%;
    margin-right: 10%;
  }
  section ul
  {
    margin-right: 0px;
  }
}

section h2
{
  text-align: center;
  font-weight: bold;
  width: 90%;
  justify-self: center;
}

section ul
{
  margin: 0 auto;
  margin-right: 40px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, max(250px, 350px));
  align-content: center;
  justify-content: center;
  gap: 30px;
}

Section li
{
  width: 350px;
  background-color: var(--Product-Achtergrond);
  border-radius: 50px;
  box-shadow: var(--Schaduw);
  display: block;
  color: white;
  text-align: center;
  justify-content: space-between;
  flex-direction: column;
  align-content: center;
}

@media (max-width: 1000px)
{
  Section li
  {
    width: 300px;
    text-align: center;
  }

  section ul
  {
    grid-template-columns: repeat(auto-fill, 300px);
    text-align: center;
  }
  section li h2{
    margin-top: 30px;
  }
}

Section li:hover
{
  background-color: rgb(255, 185, 129);
  transition: all 0.3s;
}

section li:hover
{
  cursor: pointer;
}

section a
{
  text-align: center;
  color: white;
}

section li img
{
  width: 90%;
  padding-left: 0%;
  padding-right: 0%;
  aspect-ratio: 16/9;
  display: block;
  margin: 0 auto;
}

.Product img
{
  justify-items: center;
  border: 5px solid;
  border-radius: 15px;
}

section select
{
  background-color: rgb(255, 132, 94);
  border: none;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

section li div
{
  display: flex;
  flex-direction: column;
  align-content: space-between;
  margin: 5%;
  justify-content: center;
  text-align: center;
  justify-items: center;
  align-content: end;
}

select option
{
  font-weight: bold;
}

section p
{
  font-weight: bold;
}

section div div
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
  color: white;
}

section div
{
  display: inline-block;
  justify-content: center;
}

section button
{
  cursor: pointer;
  border-width: 0px;
  border-radius: 10px;
  background-color: #e26039;
  padding: 10px;
  margin-bottom: 5%;
  word-spacing: 5px;
  color: white;
  width: max-content;
}

section button:hover
{
  background-color: #ce1e21;
}

#BekijkWinkelwagen
{
  position: relative;
  top: 30px;
  margin-bottom: 20px;
  font-size: 20px;
  padding: 15px;
  border-radius: 40px;
  background-color: var(--Knop-Achtergrond);
  color: white;
}

#BekijkWinkelwagen:hover
{
  background-color: var(--Knop-Achtergrond-Actief);
  cursor: pointer;
}

#bekijk
{
  text-align: center;
  margin-bottom: 80px; /* extra ruimte boven de ondertekst */
}

main{
  align-items: start;
  justify-content: center;
}

main h1
{ 
  margin-top: 100px;
  text-align: center;
  font-size: 50px;
}

main h2
{
  color: black;
}

main ul
{
  justify-content: center;
  list-style: none;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fill, 600px);
  margin-right: 50px;
  gap: 40px;
}


main li
{
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 30px;
  width: 500px;
  background-color: var(--Product-Achtergrond);
  color: white;
  max-width: 100%;
  position: relative;
}

main a{
  text-align: center;
  height: 0;
  padding-bottom: 70%;
}

main img{
  padding-top: 30px;
  aspect-ratio: 16/9;
  max-width: 90%;
}

main div
{
  display:flex;
  justify-content: space-between;
  padding-left: 10%;
  padding-right: 10%;
}

.Product
{
  position: relative;
}

#team
{
  font-size: 20px;
  display: block;
  background-color: blue;
  padding: 10px;
  border-radius: 40px;
  width: max-content;
  color: white;
  position: absolute;
  left: -10px;
  top: -40px;
}

#extra
{
  font-size: 20px;
  display: block;
  background-color: red;
  padding: 10px;
  border-radius: 40px;
  width: max-content;
  color: white;
  position: absolute;
  right: -10px;
  top: -40px;
}

#uitgelicht
{
  text-align: center;
  display: flex;
  justify-self: center;
  border: 5px solid red;
  border-radius: 80px;
  padding: 20px;
  justify-content: center;
  margin-bottom: 20px;
  width: 90%;
}

#uitgelicht h3
{
  font-size: 30px;
  font-weight: bold;
  margin-top: 0;
}