@font-face {
  font-family: "Wellagain";
  font-weight: normal;
  font-style: normal;
  src: url("/assets/fonts/wellagain.woff?v1") format("woff");
}
@font-face {
  font-family: "Source Sans";
  font-weight: normal;
  font-style: normal;
  src: url("/assets/fonts/source-sans.woff2?v1") format("woff2");
}
@font-face {
  font-family: "Source Sans";
  font-weight: normal;
  font-style: italic;
  src: url("/assets/fonts/source-sans-italic.woff2?v1") format("woff2");
}
@font-face {
  font-family: "Source Sans";
  font-weight: bold;
  font-style: normal;
  src: url("/assets/fonts/source-sans-bold.woff2?v1") format("woff2");
}
@font-face {
  font-family: "Source Sans";
  font-weight: bold;
  font-style: italic;
  src: url("/assets/fonts/source-sans-bold-italic.woff2?v1") format("woff2");
}
body {
  font-family: "Source Sans", sans-serif;
}

h1 {
  font-family: "Wellagain", Times, script;
}

.listless {
  margin: 0;
  padding: 0;
  list-style: none;
}
.listless li {
  margin: 0;
  padding: 0.5em 0;
}

h1 {
  margin: 0;
  line-height: 1.5;
  font-size: 5em;
}
@media (max-width: 1280px) {
  h1 {
    font-size: 3em;
  }
}

.text p {
  font-size: 1.2em;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .text p {
    font-size: 1em;
  }
}
.text p p {
  margin: 1.5em 0;
  hanging-punctuation: first;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul[class],
ol[class] {
  padding: 0;
}

body {
  text-rendering: optimizeSpeed;
  scroll-behavior: smooth;
}

img {
  display: inline-block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #221e18;
  color: #f0f0f0;
}

a {
  color: #f0f0f0;
}
a:visited {
  color: #f0f0f0;
}
a:hover, a:active {
  color: #ffe8c6;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5em;
  opacity: 0.7;
}

.app__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-rows: 30vh;
  gap: 0.3em;
  margin: 0.3em;
}
@media (max-width: 1024px) {
  .app__content {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 40vh;
  }
}
@media (max-width: 480px) {
  .app__content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

article img,
article iframe {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.large {
  grid-column: auto/span 2;
  grid-row: auto/span 2;
}
@media (max-width: 1024px) {
  .large {
    grid-column: auto;
    grid-row: auto;
  }
}

.vertical {
  grid-row: auto/span 2;
}
@media (max-width: 1024px) {
  .vertical {
    grid-row: auto;
  }
}

.separator {
  grid-column: 1/-1;
}

.text {
  background: #f0f0f0;
  color: #221e18;
}
.text header {
  text-align: center;
}
.text header p {
  margin: 0.2em 0 0;
}

.intro {
  display: flex;
  flex-direction: column;
  padding: 2.25em;
}
.intro section {
  margin-top: auto;
}

.info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5em;
}
.info p:only-child {
  margin: 0;
}

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