body {
  font-family: 'Arial', cursive;
  background-color: #f4f4f4;
  text-align: center;
}

h1 {
  color: #333;
  text-align: center;
}

p {
  font-size: 16px;
}

p.small {
  line-height: 0.2;
}

p.big {
  line-height: 1.8;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 30px;
}

.image-item {
    text-align: center;
}

.image-item img {
    display: block;
}

.image-item p {
    margin-top: 10px;
}