* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.main {
  overflow-x: hidden;
  position: absolute;
  justify-content: center;
  align-items: center;
  margin: 10px;
  padding-bottom: 10px;
  max-width: 100%;
  width: 100vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 300px));
  column-gap: 10px;
  row-gap: 10px;
}

img {
  width: 300px;
  height: 350px;
  object-fit: fill;
  object-position: center;
}
h1 {
  text-align: center;
}
