html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #000;
  color: #99ccff;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 48px 24px;
  text-align: center;
}


.site-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-logo {
  width: 260px;
  max-width: 70vw;
  height: auto;
  display: block;
}

.image-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  padding: 12px 0;
}

.image-row img {
  flex: 0 0 auto;
  width: 170px;
  height: 170px;
  object-fit: cover;
  border: 2px solid #99ccff;
  background: #000;
}

.contact {
  color: #99ccff;
  letter-spacing: 0.02em;
}

.contact a {
  color: #ffff66;
  text-decoration: underline;
}

.contact a:visited {
  color: #cc99ff;
}

@media (max-width: 760px) {
  .page {
    justify-content: flex-start;
    padding-top: 64px;
  }

  
.site-header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-logo {
  width: 260px;
  max-width: 70vw;
  height: auto;
  display: block;
}

.image-row {
    justify-content: flex-start;
  }

  .image-row img {
    width: 145px;
    height: 145px;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.product-image {
  width: 220px;
  max-width: 72vw;
  height: auto;
  display: block;
}

.product-caption {
  color: #99ccff;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  letter-spacing: 0.02em;
}

