.product {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align:justify;
}

.hero {
  display: grid;
  padding: 8rem 0 2rem;
  gap: 8rem;
}

.hero__text {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  color: rgb(var(--pri));
  gap: 1rem;
}

h1 {
  text-transform: capitalize;
  font-weight: normal;
  font-size: 3em;
  line-height: 100%;
}

.hero__spiel {
  max-width: 800px;
}

.hero__buttons {
  display: flex;
  gap:2rem;
}

.hero__buttons a {
  display: block;
  padding: .5rem 1rem;
  background-color: rgb(var(--pri));
  color: rgb(var(--sec));
  border: 1px solid rgb(var(--pri));
  text-decoration: none;
  transition: color .2s, background-color .2s;
}

.hero__buttons a:last-child {
  background-color: transparent;
  color: rgb(var(--pri));
  border: 1px solid rgb(var(--pri));
}

.hero__buttons a:hover,
.hero__buttons a:focus {
  background-color:rgba(var(--pri),.5);
  color: rgb(var(--sec));
}

#product__img {
  margin: auto;
  width: 95%;
  max-width: 1000px;
  max-height: 500px;
  object-fit: contain;
}

.feature {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  max-width: 1000px;
  color: rgb(var(--pri));
  gap:1rem;
  margin-bottom: 3rem;
  font-size: 1.2em;
}

h2 {
  background-color: rgb(var(--pri));
  color: rgb(var(--sec));
  line-height: 100%;
  padding: .5rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  font-size: 1em;
}

#pills {
  list-style-type: none;
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
}

#pills li {
  line-height: 1;
  padding: .5rem;
  background-color: #fff2;
  border-radius: 99px;
  box-shadow: 0 0 8px #0008;
}

#features {
  list-style-position: inside;
  list-style-type:circle;
  display: flex;
  flex-flow: column;
  gap: 1rem;
}

.table {
  text-align: left;
  font-size: .8em;
  width: 100%;
  max-width: 90vw;
  overflow-x: auto;
  padding: 0 0 1rem;
}

.table table {
  width: 100%;
  min-width: 1000px;
}

.table th,td {
  padding: .5rem;
  line-height: 1;
}

.table td {
  background-color: rgba(var(--content-bg));
}

.table th {
  background-color: rgb(var(--content-bg));
}

.transparent {
  opacity: 0;
}

@media (max-width: 425px) {
  .product {
    text-align: center;
  }
  .feature {
    align-items: center;
  }
  .hero__buttons {
    flex-flow: column;
    gap:.5rem;
    width: 100%;
  }
}