@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

* {
  box-sizing: border-box;
}

body {
  display: grid;
  place-items: center;
  margin: 0;
  min-height: 100vh;
  font-family: Roboto, sans-serif;
}

.title {
  margin: 10px 0 0;
  text-align: center;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(100%, 960px);
  img {
    width: 300px;
    height: 300px;
    object-fit: cover;
  }
}
