*,
*::before,
*::after {
  /* Use a more-intuitive box-sizing model. */
  box-sizing: border-box;
}

* {
  /* Remove default margin */
  margin: 0;
}

html,
body {
  /* Allow percentage-based heights in the application */
  height: 100%;
  width: 100%;
}

body {
  /* Nicer text rendering */
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  /* Nicer media defaults */
  display: block;
  max-width: 100%;
}

:root {
  isolation: isolate;
}

body {
  background-image: url("assets/infinite-paper.jpg");
  background-repeat: repeat;
  background-size: 60%;
}

body {
	font-size: 1.8rem;
	font-weight: 400;
	color: rgba(39, 47, 52, 0.85);
	font-family: "Linden Hill";
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0;
}

body a {
	color: rgba(39, 47, 52, 0.85);
	border-bottom: 0px solid rgba(127, 127, 127, 0.2);
	text-decoration: underline;
}

.landing {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.landing > .container {
  width: 66vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing > .container > img {
  width: 100%;
  height: auto;
  max-height: 25vh; /* Prevents images from being too tall */
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* Info in columns if there's enough space */
.info-container {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  padding-bottom: 3.6rem;
}
.info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Else, info in rows. */
@media (max-width: 1050px) {
  .info-container {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
  }
  .info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.3rem;
  }
}

