@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul, ol {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100svh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

body {
  background: #ffffff;
  color: #000000;
  display: flex;
  flex-direction: column;
}

.wrapper {
  width: min(100vw - 2rem, 80ch + 2rem);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
}

nav, footer {
  background-color: #8f1b13;
  color: white;
}
nav h1, footer h1 {
  display: flex;
  gap: 0.25em;
  align-items: end;
}
nav .home-link:hover::after, footer .home-link:hover::after {
  content: "\f424";
  font-family: "bootstrap-icons";
}
nav .wrapper, footer .wrapper {
  display: flex;
  justify-content: space-between;
  padding-block: 1rem;
}

main {
  flex-grow: 1;
}
main .wrapper {
  padding-top: 2rem;
}
main p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  text-indent: 2rem;
  line-height: 1.5;
}
@media (min-width: 700px) {
  main .home {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10rem;
  }
}
main .home .logline p {
  text-indent: 0;
  font-size: 1rem;
  text-align: justify;
  margin-bottom: 1rem;
}
main .home .part-name {
  margin-top: 1rem;
}
main .home .part-name:first-of-type {
  margin-top: 0;
}
main .home .chapters {
  order: -1;
  margin-bottom: 2rem;
}
main .home .chapter-list {
  padding: 0;
  margin: 0;
  font-family: "Lato", sans-serif;
}
main .home .chapter-list li {
  font-weight: 600;
  margin-block: 0.5rem;
}
main .home .chapter-list li a:hover {
  color: #8f1b13;
}
main .part-opening {
  text-align: center;
  padding-bottom: 2rem;
}
main .part-opening h2 {
  font-size: 2rem;
  font-weight: 600;
}
main .scene-change {
  text-indent: 0;
  text-align: center;
  margin-block: 1rem;
}
main .bill {
  text-align: center;
  background-color: #cccccc;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}
main .bill p {
  text-indent: 0;
}
main .bill-title {
  font-weight: 600;
}
main .bill-votes {
  margin-block: 0.5rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
main h3 {
  margin-top: 0.5rem;
}
main .pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
main .pagination a {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  padding-block: 2rem;
}
main .pagination a:hover {
  color: #8f1b13;
}

footer p, footer a {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
}

/*# sourceMappingURL=main.css.map */