* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  width: auto;
  height: auto;
  overflow-x: auto;
  overflow-y: auto;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.2;
  color: #333;
}

.header-text {
  text-align: center;
  padding: 8px 10px 6px;
    width: 100%;
}

.header-text p {
  margin: 0;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  padding: 0;
  width: 100%;
}

.image-container img {
  display: block;
  max-width: none;
  width: auto;
  height: auto;
    flex: 0 0 auto;
  align-self: flex-start;

}