.thumbnail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail-item {
  margin-bottom: 0;
  box-sizing: border-box;
  width: 43%;
  margin-right: 10px;
  display: flex;
  margin: 10px;
}

@media (max-width: 800px) {
  .thumbnail-item {
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 80%;
    margin-right: 0;
    height: auto;
    display: flex;
  }
}

.thumbnail-image {
  width: 100%;
  height: 350px;
  align-self: flex-start;
}

h1 {
  text-align: center;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 15px;
}

.menu-container {
  background-color: #101010;
  border: 1px solid #000000;
  padding: 20px;
  max-width: 1200px;
  margin: 30px auto;
}