* {
  box-sizing: border-box;
  text-wrap: pretty;
}

body,
main {
  margin: 0;
}

body {
  font-family: "Times New Roman", serif;
  letter-spacing: -0.03em;
  background: var(--bg);
}

header {
  padding: 3rem;
  position: relative;
  text-align: center;
}

header a {
  text-decoration: none;
}

footer {
  padding: 8rem 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

footer a {
  color: inherit;
  font-size: 1.125rem;
}

h1 {
  font-size: 5.5vw;
  font-weight: 400;
  line-height: 100%;
  margin: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 1rem 0;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  color: blue;
}

a:visited {
  color: rgb(129, 7, 118);
}

a:hover {
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
}

main {
  max-width: 68rem;
  margin: 2rem auto;
  padding: 0 5rem;
}

section {
  margin: 0 0 5rem 0;
  display: grid;
  grid-template-columns: 24rem 1fr;
  gap: 0 2rem;
}

section > h2,
section > p {
  grid-column: span 2;
}

.issue-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

section > ul {
  align-self: start;
}

section:nth-child(1) .iframe__container,
section:nth-child(2) .iframe__container {
  border: 1px solid rgb(219, 219, 219);
}

ul li {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem 0;
}

li {
  font-size: 1.125rem;
}

li a {
  line-height: 140%;
}

li > span:nth-child(2) {
  font-size: 1rem;
}

li > span:last-child {
  text-align: right;
}

.iframe__container {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

iframe {
  transform-origin: top left;
  transform: scale(0.8);
  width: 125%;
  height: 125%;
  border: none;
}

.iframe__container img {
  display: none;
  width: 100%;
}

section:nth-child(2) iframe {
  transform: scale(0.45);
  width: 222%;
  height: 222%;
}

section:nth-child(5) iframe {
  transform: scale(0.38);
  width: 263%;
  height: 263%;
}

section:nth-child(3) iframe,
section:nth-child(4) iframe {
  transform: scale(0.24);
  width: 416.7%;
  height: 416.7%;
}

.show-mobile {
  display: none;
}

@media (max-width: 800px) {
  h1 {
    font-size: 2.25rem;
  }

  li {
    font-size: 1rem;
  }

  main {
    margin-top: 0;
    padding: 2rem 1.5rem;
  }
  section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  section > a,
  section > h2,
  section > p,
  section > ul,
  section > div {
    grid-column: 1;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  ul {
    padding: 0;
    margin: 1.5rem 0 0 0;
  }

  .iframe__container img {
    display: block;
  }

  iframe {
    display: none;
  }
}
