:root {
  --paper: rgba(139, 139, 47, 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: var(--paper);
  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(160, 164, 49, 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;
  justify-content: space-between;
   grid-template-columns: 0.5fr 0.5fr;
  :first-child {
    grid-column: span 3;
  }
}
article {
  border: 2px solid;
  margin-bottom: 40px ;
  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;
  }
}
.sectionOne{
  margin-bottom: 40px;
}
.sectionThree{
 margin-left: 50px;
}
