/* Global */
html, body { margin:0; padding:0; background:#fff; color:#000; }
body { font-family: "Times New Roman", Times, serif; line-height:1.4; }
a { color:#06c; text-decoration:none; }
a:hover { text-decoration:underline; }
img { display:block; max-width:100%; height:auto; }

/* Layout: two simple columns */
.page {
  max-width: 1100px;
  margin: 24px auto 80px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 220px; /* big left, slim right */
  gap: 24px;
}

/* Left column */
.left { }
.site-name {
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 12px 0;
  text-align: left;
}

/* Image sizing for consistency */
.hero-image {
  width: 100%;
  max-width: 720px;     /* keeps it from getting too large */
  height: 720px;        /* fixed visual height so page does not jump */
  object-fit: contain;  /* show whole painting; switch to 'cover' to crop edges */
}

/* Right column links */
.right {
  padding-top: 50px;     /* aligns with name */
}
.links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

/* Footer bottom right */
.tiny-footer {
  position: fixed;
  right: 10px;
  bottom: 8px;
  font-size: 12px;
  color: #666;
  background: transparent;
  padding: 2px 6px;
}
