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

img {
  width: 200px;
  height: 300px;
  transition: transform 0.3s;
}

img:hover {
  transform: scale(1.1);
}

.header {
  background: #c4a78a;
  padding: 20px;
  color: #4b2e27;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 30px;
}

.header a img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}


.title {
  text-align: center;
  margin: 20px;
  font-size: 25px;
  color: #4b2e27;
}

table {
  margin: auto;
}

td {
  padding: 15px;
}
