body{
  background-color: white;
}

.menu-container {
  background-color: #101010;
  border: 1px solid #000000;
  padding: 20px;
  max-width: 1200px; 
  margin: 30px auto; 
}

h1{
  text-align: center;
  color: #ffcc00;
  font-weight: bold;
}

h2{
  color: #ffcc00;
  text-align: center;
  font-weight: bold;
}

.thumbnail-item {
    display: inline-block;
    margin-right: 40px;
    margin-bottom: 30px;
    color: black;
    order: 1;
  
    border: 1px solid rgb(0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0.8);
    border-width: 3px;
  
    transition: transform 133ms ease-in-out;
  
}

@media (max-width: 800px) {
  .thumbnail-item {
    margin-right: 0;
  }
}
  
.thumbnail-image:hover {
  transform: scale(1.2);
}
  
.thumbnail-list-container {
  display: flex;
  justify-content: center;
  box-shadow: black;
  /* text-align: center; */
}

.thumbnail-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* text-align: center; */
  list-style: none;
  padding: 20px 10px;
}

  
.thumbnail-image {
  display: block;
  width: 320px;
  height: 200px;
  /* pointer-events: none; */
  /* width: 100%; */
}
  
.thumbnail-title{
  text-decoration: underline;
}

.thumbnail-title,
.thumbnail-price {
  display: inline-block;
  /* vertical-align: top; */
  /* justify-content: space-between; */
  margin: 0;
  padding: 4px 10px;
  background: #ffcc00;
  color: #000000;
  font-size: 17px;
  justify-content: space-between;
}

.thumbnail-together{
  background-color: #ffcc00;
  font-weight: bold;
}

.thumbnail-price {
  display: inline-flex;
  float: right;
}

.thumbnail-description {
  display: block;
  margin: 0;
  padding: 4px 10px;
  text-align: center;
  font-weight: bold;

  background: #ffcc00;
  color: #000000;

  font-size: 12px;
} 