
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #1c1a17;
  --paper: #f0ece4;
  --paper-warm: #e8e0d0;
  --accent: #c6922a;
  --accent-deep: #9b4d30;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --page-max: 64rem;
  --gutter: clamp(1.5rem, 4vw, 3rem);
}

table, td{
  border: 1px solid gray;
  width: 850px;
  height: 40px;
}
th{
  font-size: 50px;
  background-color: magenta;
}
table{
  margin: auto;
  font-size: 20px;
  
}

img{
  width: 100px;
  
}
#h{
  font-weight: bold;
  font-size: 20px;
  background-color:blue;
  color: white;
  height: 10px
}



body {
  background-color: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.75;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
}

figure { margin: 0; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

::selection {
  background-color: var(--accent);
  color: var(--paper);
}

.magazine {
  max-width: var(--page-max);
  margin: 0 auto;
  background-color: var(--paper);
}

.hero {
  position: relative;
  min-height: 50vh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}

.hero__painting {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__painting img {
  filter: brightness(0.55) saturate(1.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(28, 26, 23, 0.85) 70%);
  OPACITY: 0.85;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: var(--gutter);
  padding-bottom: clamp(2rem, 6vw, 4rem);
  color: var(--paper);
}

.hero__issue {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.35;
  max-width: 36ch;
  opacity: 0.85;
}

.hero__meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.intro__text {
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro__pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: var(--accent-deep);
  margin-bottom: 1.5rem;
  max-width: 20ch;
}

.intro__body p {
  margin-bottom: 1em;
}

.intro__portrait {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
}

.intro__portrait img {
  filter: sepia(0.15) contrast(1.05);
}

.intro__label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--ink);
  color: var(--paper);
  padding: 1rem var(--gutter);
  max-width: 22rem;
}

.label-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.label-detail {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.columns {
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}

.columns__heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.columns__subheading {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 2rem;
}

.columns__body {
  columns: 18rem 3;
  column-gap: calc(var(--gutter) * 1.2);
}

.columns__body p {
  margin-bottom: 1.1em;
  text-align: justify;
  hyphens: auto;
}

.columns__body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-weight: 900;
  font-size: 3.4em;
  float: left;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--accent-deep);
}

.feature {
  position: relative;
}

.feature__painting {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.feature__painting img {
  filter: saturate(1.1);
}

.feature__label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--ink);
  color: var(--paper);
  padding: 1rem var(--gutter);
  max-width: 22rem;
}

.quote-band {
  background-color: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
}

.quote-band__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2.4rem);
  line-height: 1.35;
  max-width: 34ch;
  margin: 0 auto 1rem;
}

.quote-band__attribution {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery__item-label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split__text {
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--paper-warm);
}

.split__heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.split__subheading {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.5rem;
}

.split__text p {
  margin-bottom: 1em;
}

.split__image {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
}

.split__label {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--ink);
  color: var(--paper);
  padding: 1rem var(--gutter);
  max-width: 22rem;
}

.magazine-footer {
  padding: 2rem var(--gutter);
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.3;
  border-top: 1px solid rgba(28, 26, 23, 0.1);
}

@media screen and (max-width: 48rem) {
  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .intro__portrait,
  .split__image {
    min-height: 20rem;
    order: -1;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery__item {
    aspect-ratio: 4 / 3;
  }
}