:root {
  --sky-blue-light: #8ecae6ff;
  --blue-green: #219ebcff;
  --deep-space-blue: #023047ff;
  --amber-flame: #ffb703ff;
  --princeton-orange: #fb8500ff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 18px;
  background-color: var(--blue-green);
  color: var(--sky-blue-light);
}

main {
  width: calc(100vw - 4rem);
  height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--deep-space-blue);
  margin: 2rem 0 0 2rem;
  padding: 2rem;
  border-right: 4rem solid var(--princeton-orange);
}

main::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: -50%;
  left: -65%;
  display: block;
  width: 200vh;
  height: 200vh;
  aspect-ratio: 1;
  clip-path: shape(from 74.44% 26.94%,curve to 74.44% 71.34% with 98.87% 50.00%,curve to 25.74% 71.34% with 50.00% 92.68%,curve to 25.74% 26.94% with 1.47% 50.00%,curve to 74.44% 26.94% with 50.00% 3.89%);
  background-color: var(--amber-flame);
}

h1 {
  color: white;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  background-color: var(--amber-flame);
  padding: 0.5rem 1rem;
  color: var(--deep-space-blue);
}

a {
  color: var(--sky-blue-light);
}

a:hover, a:focus {
  color: var(--amber-flame);
}

p {
  margin-bottom: 3.25em;
}

* > * {
  margin-top: 0;
  margin-bottom: 0.5em;
}

ul {
  list-style: none;
  padding: 0;
}

#not-looking {
  opacity: 0.8;
  font-size: 0.7rem;
}
