stylesheet from town .items { display: grid; grid-template-columns: repeat(3, 1fr); padding: 60px 40px; grid-column-gap: 40px; ; grid-row-gap: 60px; ; } .item img { width: 100%; height: 200px; object-fit: cover; cursor: pointer; transition: 0.2s ease; } .item img:hover { transform: scale(1.04); } .item h4 { padding: 10px; text-align: center; } .item button { padding: 10px 60px; border: none; outline: none; background-color: #be1e2d; color: #d7e4c2; cursor: pointer; border-radius: 6px; font-size: 80px; display: block; margin: 0 auto; transition: 0.2s all; } .item button:hover { transform: scale(1.04); } @media screen and (max-width:546px) { .items { grid-template-columns: repeat(1, 1fr); } } Index from -town