body {
  font-family: Roboto, sans-serif;
  background: #333;
  color: #fff;
  margin: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
ul li a {
  text-transform: capitalize;
  color: orange;
  justify-content: center;
}

.list_wrapper {
  display: grid;
  justify-content: center;
}
ul img {
  display: block;
  width: 320px;
  height: 450px;
  object-fit: cover;
  transition: transform 0.5s;
  border-radius: 10px;
}

ul a:hover img {
  transform: scale(1.2);
}
