*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

:root {
  --primary1: #00538B;
  --primary2: #0074BF;
  --primary3: #00B388;
  --type: #010b13;
  --type-alt: #141414;
  --text-sub: #666;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translate(var(--coordX), var(--coordY));
  }
  75% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.site-logo {
  overflow: visible;
  width: 450px;
  height: auto;
  max-width: 90%;
  display: block;
  margin: 1rem auto 2rem auto;
}

.site-logo [id^="text-"] {
  animation-fill-mode: backwards;
  animation-name: fadeIn;
  animation-duration: .3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-delay: .4s;
}

.site-logo [id^="arrow-"] {
  animation-name: fadeSlide;
  animation-duration: .7s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}

.site-logo  #arrow-top {
  --coordX: 0;
  --coordY: -25%;
}

.site-logo #arrow-right {
  --coordX: 25%;
  --coordY: 0;
}

.site-logo #arrow-bottom {
  --coordX: 0;
  --coordY: 25%;
}

.site-logo #arrow-left {  
  --coordX: -25%;
  --coordY: 0;
}

body {
  background-color: white;
  font-family: Jost, sans-serif;
  color: var(--type);
  font-weight: 350;
}

a {
  color: var(--primary1);
  font-weight: 500;
}

a:hover {
  color: var(--primary2);
}
  
.wrap {
  margin: 4rem;
  width: 90vw;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

.date {
  color: var(--text-sub);
}

p {
  margin: 1em 0;
}

.site-footer {
  padding: 1rem 0 2rem 0;
}

h1, h2 {
  color: var(--type-alt);
  font-weight: bold;
  line-height: 1.1;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

h2 {
  font-size: 1.5em;
}

h2 + p {
  margin-top: .2em;
}

.links {
  display: grid;
  gap: 2em;
  margin: 3em 0;
}

.links p:last-child {
  margin-bottom: 0;
}

.links li:not(:first-child) {
  border-top: 1px solid var(--primary3);
  padding-top: 2em;
}

@media (min-width: 1024px) {
  .site-logo {
    margin: 5rem auto;
  }

  .wrap {
    font-size: 1.2rem;
    width: 80vw;
  }

  h1 {
    font-size: 3rem;
  }

  .links {
    gap: 2em;
  }

  .site-footer {
    padding: 3rem 0;
  }
}

