@font-face {
  font-family: "Garamond";
  src: url("Garamond.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hells Angels";
  src: url("TAYHellsAngles.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --fg: #1a2035;
  --bg: #60a3f5;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Garamond", serif;
  font-weight: 500;
  font-size: 1.5rem;

  margin: 0px 18px;

  background-color: var(--bg);
  background-image: url("paper-3.png");
}

p {
  text-wrap: pretty;
}

::selection {
  background-color: var(--fg);
  color: var(--bg);
}

h1,
h2,
.movie-date,
.movie-link,
.next-movie-label {
  font-family: "Hells Angels", sans-serif;
}

main {
  max-width: 800px;
  margin: 0 auto;
  color: var(--fg);
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9;
  text-align: center;
}

h2 {
  font-size: 1.7rem;
  margin-bottom: 0px;
}

@media (min-width: 600px) {
  body {
    margin: 32px 32px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3rem;
  }
}

ul {
  padding-left: 0px;
}

li {
  margin-bottom: 1rem;
  list-style: none;
}

footer {
  border-top: 2px solid var(--fg);
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  font-size: 1.2rem;
  opacity: 0.5;
  text-align: center;
}

a {
  color: var(--fg);
  text-underline-offset: 3px;
}

.movie-description {
  font-size: 1.2rem;
}

.movie-description p {
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.movie-date {
  font-size: 1rem;
  font-weight: bold;
}

.movie-link {
  font-style: italic;
}

.movie {
  margin-bottom: 2rem;
}

.next-movie {
  position: relative;
  outline: 2px solid var(--fg);
  outline-offset: 6px;
  padding-right: 1rem;
}

.next-movie-label {
  position: absolute;
  top: 0px;
  height: 140px;
  right: -16px;
  text-align: center;
  background-color: var(--bg);
  font-size: 0.9rem;
  padding: 1px 0px;
  border: 2px solid var(--fg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.email-form {
  text-align: center;
  border-top: 2px solid var(--fg);
  margin-top: 4rem;
  padding-top: 2rem;
}

.email-label {
  display: block;
  margin-bottom: 0.6rem;
}

.email-form input[type="email"] {
  font-family: "Garamond", serif;
  font-size: 1rem;
  width: 256px;
  height: 2.5rem;
  padding: 0rem 0.5rem;
  border: 2px solid var(--fg);
  margin-right: 0.5rem;
  background-color: #ffffff66;
  color: var(--fg);
  outline: none;
}

.email-form input[type="submit"] {
  font-family: "Garamond", serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0rem 1rem;
  height: 2.5rem;
  border: 2px solid var(--fg);
  background-color: var(--bg);
  color: var(--fg);
  cursor: pointer;
}

.email-form input[type="submit"]:hover {
  background-color: var(--fg);
  color: var(--bg);
}

.qr-container {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 8rem;
  font-family: "Hells Angels", sans-serif;
}

.qr-container img {
  margin-bottom: 1rem;
  flex-shrink: 0;
}

@media print {
  :root {
    --fg: #000;
    --bg: #fff;
  }

  body {
    background-image: none;
  }

  footer {
    display: none;
  }

  .qr-container {
    display: flex;
  }
}
