*{
  box-sizing: border-box;
  image-rendering: pixelated;
  scrollbar-width: thin;
  scrollbar-color: #29272575 transparent;
}

::selection{
  background: #292725;
  color: #fff;
}

body{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;

  background: #fff;
  color: #292725;
  font-family: 'Times New Roman', sans-serif;
  font-size: 12px;
}

main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  width: fit-content;
}

img{
  width: 100px;
  height: 100px;
  border: 1px dotted #bcbcbd;
}