:root {
  --bg: #f6f1e4;
  --fg: #1f1c17;
  --link: #4b2e83;
  --max-width: 640px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  line-height: 1.3;
}

main {
  max-width: var(--max-width);
  margin: 0;
  padding: 3rem 1.5rem 4rem 4.5rem;
  text-align: left;
}

h1 {
  font-weight: 700;
  font-size: 2.0rem;
  margin: 0 0 1.25rem;
}

p {
  font-size: 1.10rem;
  margin: 0 0 1rem;
}

a {
  color: var(--link);
  text-decoration: underline;
}

.uiuc .orange {
  color: #e84a27;
}

.paper-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Fractal-noise SVG grain, since there's no crepe-paper image asset in the repo */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  /* Blend the texture organically with underlying content */
  mix-blend-mode: multiply;
  opacity: 0.6;
  /* Allow mouse clicks to pass through the overlay */
  pointer-events: none;
  z-index: 9999;
}


.uiuc .blue {
  color: #13294b;
}
