
body {
  background-color: gold;
  margin: 0;
  font-family: sans-serif;
}

section {
  background-color: black;
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  max-width: 1200px;
 
}

video {
   margin: 20px auto;
   border: 5px solid gold;
   border-radius: 10px;
}

.video-right {
   float: right;
   margin-left: 20px
}

header, nav, footer {
  text-align: center;
  color: black;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: black;
  color: white;
  table-layout: fixed;
}

th, td {
  border: 1px solid gold;
  padding: 10px;
  text-align: left;
  width: 25px;
}

td {
vertical-align:top;
padding:20px;
}

td:first-child {
border-right: 5px solid gold;
}

td:last-child {
padding-left:20px;
}

.product-table {
  width: 90%;
  margin: auto;
  border-collapse: collapse;
  font-size: 14px; /* Smaller font for better fit */
}

.product-table th,
.product-table td {
  padding: 6px 8px; /* Reduce padding */
  text-align: left;
  vertical-align: top;
}

.product-table img {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .product-table {
    font-size: 12px;
  }

  .product-table img {
    max-width: 80px;
  }
}
