
:root {
  --paper: rgba(35, 62, 62, 0.562) ;
  --ink: color-mix(in oklab, var(--color) 5%, black);
  --font: 100%/1.5 system-ui;
  --space: clamp(6px, 6px + 2vw, 15px);
  --line: 1px solid;
  --container: 1280px;
}
h1 {
text-align: center;
border-bottom: ver(--line);
font-family: 'Times New Roman', Times, serif  ;
}
body {
  background: rgb(229, 228, 138);
  color: var(--ink);
  font: var(--font);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: larger;
}
a {
  padding: 15px;
  color: rgba(10, 10, 10, 0.842);
  border-radius: 20px;
  background-color: rgba(232, 237, 85, 0.543);
  border: 3px solid rgb(74, 48, 79);
  font-weight: bold;
  max-width: fit-content;
}
img,
svg {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}
main {
  max-width: 1200px;
  margin: 0 auto calc(var(--space) * 4) auto;
}
footer {
  position: fixed;
  font-family: Georgia, 'Times New Roman', Times, serif;
  border-top: var( line);
  bottom: 0;
  text-align: center;
  width: 100%;
}
main {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: calc(var(--space) *2);
  :first-child {
    grid-column: span 3;
  }
}
article {
  border: 2px solid;
  border-radius: 15px;
  padding-bottom: 20px;
  font-style: italic;
  text-align: left;
  display: grid;
  grid-template-columns: var(--space) 1fr var(--space);
  > * {
    grid-column: 2/3;
  }
  > img {
    grid-column: span 3;
  }
}
