* {
  box-sizing: border-box;
  box-sizing: inherit;
  margin: 0%;
  padding: 0%;
}
#header {
  width: 100%;
  height: 10%;
  position: fixed;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(65, 65, 65);
  justify-content: space-between;
  align-items: center;
}
#header-img {
  max-height: 65%;
  max-width: 40%;
  width: auto;
  display: block;
  filter: invert();
}
#nav-bar {
  margin-right: 1em;
}
#nav-bar ul {
  display: inline-flex;
  justify-content: end;
  align-items: center;
}
#nav-bar ul li {
  list-style-type: none;
}
.nav-link {
  text-decoration: none;
  color: white;
  margin-left: 2rem;
}
section {
  margin-bottom: 3rem;
}
section:first-of-type {
  margin-top: 15%;
}
#form {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  width: 450px;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
  margin-bottom: 10%;
}
#form h2 {
  text-align: center;
  margin-bottom: 1em;
}
#email {
  max-width: 70%;
  text-align: center;
  margin-bottom: 0.5em;
}
#submit {
  max-width: 30%;
}
#products {
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 90%;
  margin-inline: auto;
}
.product {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
.product-icon {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
i {
  font-size: max(5vw) !important;
}
.product-container {
  max-width: 85%;
  width: 600px;
}
iframe {
  margin: 2rem auto;
  aspect-ratio: 16/9;
  max-width: 80%;
  width: 500px;
}
#prices {
  max-width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
}
.product-price {
  display: flex;
  flex-direction: column;
  max-width: 30%;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.315);
  border-radius: 10px;
  overflow: hidden;
}
.price-title {
  padding: 0.5em;
  background-color: grey;
  color: white;
}
.price-info {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  padding: 1em 0.5em;
}
.price-info li {
  list-style-type: none;
}
.select-btn {
  border: 1px solid rgba(0, 0, 0, 0.048);
  border-radius: 5px;
  background-color: rgb(0, 163, 0);
  color: white;
  padding: 5px;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3em;
  padding: 0.7em;
  background-color: grey;
  color: white;
  margin-top: 6rem;
}
footer ul {
  display: flex;
}
footer li {
  list-style-type: none;
  margin-inline: 3px;
}
footer a {
  /* text-decoration: none; */
  color: white;
}

@media screen and (max-width: 768px) {
  section:first-of-type {
    margin-top: 7rem !important;
  }
}
@media screen and (max-width: 600px) {
  .product-price {
    max-width: 50% !important;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 416px) {
  .product-price {
    width: 100% !important;
    margin-bottom: 1em;
  }
  header {
    justify-content: center !important;
  }
}
