body {
  font-family: Arial, sans-serif;
  background-color: #e0e0e0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.header, .section, .inventory {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: left;
}

h1, h2 {
  font-weight: bold;
  color: #333;
  text-align: center;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.section p, .section ul li, .inventory p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

ul {
  text-align: left;
  padding-left: 20px;
  list-style-type: none;
}

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

ul li::before {
  content: "• ";
  color: #666;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.btn-primary {
  background-color: #666;
  border-color: #666;
}

.btn-primary:hover {
  background-color: #555;
  border-color: #555;
}

.table {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.table th,
.table td {
  border: 1px solid #dee2e6;
  padding: 15px;
  font-size: 1.25rem;
}

.table th {
  background-color: #444;
  color: #fff;
}

.price-column {
  font-weight: bold;
  color: #444;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .header, .section, .inventory {
    padding: 15px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .section p, .section ul li {
    font-size: 1rem;
  }

  .table th,
  .table td {
    font-size: 1rem;
    padding: 10px;
  }
}

a {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

.header {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.facebook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #555;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  font-size: 20px;
}
.facebook-btn:hover {
  background-color: #333;
  transform: scale(1.05);
  color: white;
}

