:root {
  font-size: 16px;
}
@media (max-width: 750px) {
  :root {
    font-size: 15px;
  }
}

* {
  padding: 0;
  margin: 0;
  font-family: "ff-scala-sans-pro", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-feature-settings: "pnum" 1;
  color: black;
  text-decoration: none;
  list-style: none;
}

body {
  max-width: 1100px;
  margin: 4rem auto 4rem;
  padding: 0 1rem;
  line-height: 160%;
  background-color: white;
}
@media (max-width: 750px) {
  body {
    margin: 2rem 0;
  }
}

header, .landing, .copy, .catalogue, .heading, .year, .calendar, .separator, footer {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 2fr;
  gap: 0 2rem;
}
@media (max-width: 750px) {
  header, .landing, .copy, .catalogue, .heading, .year, .calendar, .separator, footer {
    display: block;
  }
}

header {
  padding-bottom: 2rem;
}
header .title {
  grid-column-start: 2;
  font-size: 1.4rem;
  font-weight: 300;
}
header .title a {
  font-size: inherit;
}
@media (max-width: 750px) {
  header .title {
    font-size: 2rem;
  }
}
header ul {
  text-align: right;
  padding: 1.4rem 0 0;
}
@media (max-width: 750px) {
  header ul {
    text-align: left;
  }
}
header li, header a {
  color: black;
  font-size: 1.2rem;
  font-weight: 300;
}
@media (max-width: 750px) {
  header li, header a {
    font-size: 1.3rem;
    padding: 0.1rem 0;
  }
}
header li a:hover, header a a:hover {
  color: #0096FF;
}

h1 {
  font-size: 1.7rem;
  font-weight: 700;
  grid-column-start: 2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 300;
  padding: 1rem 0 0;
  grid-column-start: 2;
}

h3 {
  padding-top: 2rem;
  text-align: right;
  font-weight: 300;
}
@media (max-width: 750px) {
  h3 {
    text-align: left;
    padding-bottom: 0.5rem;
  }
}

.about, .contact {
  display: grid;
  gap: 1rem;
}
.about h2, .contact h2 {
  grid-column-start: 1;
}
.about p, .contact p {
  font-size: 1.1rem;
}

.catalogue {
  font-size: 1rem;
  margin-top: 2rem;
}
.catalogue .title {
  font-weight: 700;
  text-align: right;
}
@media (max-width: 750px) {
  .catalogue .title {
    text-align: left;
  }
}
.catalogue .resources {
  margin-top: 0.4rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  grid-column-start: 2;
  grid-row-start: 2;
}
.catalogue .resources .resource-link, .catalogue .resources button {
  font-weight: 400;
  margin: 0;
  display: inline;
  font-size: 0.85rem;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  border-radius: 0.25rem;
  padding: 0rem 0.5rem 0.15rem 0.5rem;
  text-transform: lowercase;
  font-feature-settings: "smcp" 1;
  transition: all 0.3s ease;
}
.catalogue .resources .resource-link:hover, .catalogue .resources button:hover {
  color: white;
  background-color: #0096FF;
  border-color: #0096FF;
}

@media (max-width: 750px) {
  .calendar {
    padding-bottom: 0.5rem;
  }
}
.calendar .date {
  font-weight: 700;
  text-align: right;
}
@media (max-width: 750px) {
  .calendar .date {
    text-align: left;
  }
}

img {
  display: block;
  padding-top: 0.4rem;
  width: 100%;
}

figcaption {
  text-align: right;
  font-size: 0.8rem;
  font-weight: 400;
  color: #787878;
}

a {
  font-weight: inherit;
  color: #787878;
}
a:hover {
  color: #0096FF;
}

.landing-img {
  grid-column-start: 2;
  padding: 0;
  filter: saturate(0) brightness(130%);
}

.copy {
  padding-top: 2rem;
}

p.copyright {
  font-size: 0.9rem;
}

.separator {
  padding: 2rem 0;
}

@media (max-width: 750px) {
  figure {
    padding-bottom: 1rem;
  }
}
.smcp {
  text-transform: lowercase;
  font-feature-settings: "smcp";
}

footer div {
  border-top: 1px solid black;
  margin-top: 3rem;
  padding-top: 0.25rem;
  grid-column-start: 2;
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */