:root {
  --background: white;
  --primary: rgb(5, 5, 5);
}

* {
  font-family: Playfair Display, serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'slnt' 0;
}

body {
  min-height: 95vh;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: var(--background);
  display: flex;
  flex-direction: column;
}

.infotext {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding-top: 40px;
}

@media screen and (min-width: 768px) {
  .infotext {
	padding-top: 70px;
    align-items: start;
    flex-direction: row;
    justify-content: space-around;
  }
}

.infotext_item {
  width: 300px;
  text-align: center;
}

.infotext_item > img {
  max-width: 300px;
}

.spacer {
  flex-grow: 2;
}

.footer {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    text-align: start;
    padding-left: 50px;
  }
}

small {
  font-style: italic;
  color: #9e9c9c;
}

h1,
p,
a {
  color: var(--primary);
}

p {
  margin: 7px 0;
  font-size: 1rem;
  font-style: italic;
}

h1 {
  margin: 0 0 15px 0;
  font-size: 2.125rem;
  font-weight: 600;
}

a {
  text-underline-offset: 7px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  p,
  a {
    font-size: 1.2rem;
  }

  h1 {
    font-size: 2.8rem;
  }
}

img {
  margin-bottom: 2px;
}

.credit {
  font-size: 0.8rem;
  text-align: right;
}
