@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "JetBrains Mono", monospace;

  color: rgb(0, 0, 0);
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  text-align: left;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 248, 239);
  opacity: 0;
  filter: blur(12px);
  transform: translateY(4vh);
  animation: body 0.9s ease-out forwards;
}

@keyframes body {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

div {
  max-width: 40rem;
  width: 100%;
}

ul {
  list-style-type: none;
  padding-left: 1.2rem;
}

ul li::marker {
  content: "- ";
}

ul li {
  position: relative;
}

ul ul {
  margin-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
}

img {
  scale: 0.8;
}

.bird {
  position: absolute;
  margin-top: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: 100vw;
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: -50;
  animation: bird-float 2s ease-in-out infinite alternate;
}

@keyframes bird-float {
  from {
    transform: translateX(-50%) translateY(0);
  }
  to {
    transform: translateX(-50%) translateY(18px);
  }
}

.bird-1 {
  position: absolute;
  top: 6svh;
  left: -2vw;
  width: 5rem;
}

.bird-2 {
  position: absolute;
  top: 11svh;
  right: 2vw;
  width: 5rem;
}

.container {
  position: relative;
  z-index: 1;
  margin-top: 20vh;
  margin-bottom: 3vh;
}

a {
  color: rgb(50, 135, 255);
}

h5 a {
  color: black;
  white-space: nowrap;
}

h3 {
  margin-bottom: 0.5rem;
}

a:hover,
a:focus {
  filter: brightness(50%);
}

h4 {
  margin-top: 1vh;
  margin-bottom: 0.25rem;
  display: inline;
}

h5 {
  margin-top: 0.25vh;
  margin-bottom: 1.4rem;
}

.external-link {
  scale: 0.6;
  margin-bottom: -0.46rem;
}

@media (max-width: 690px) {
  body {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  div.container {
    max-width: 95%;
  }
  .bird-1 {
    left: 1vw;
    top: 6svh;
  }
  .bird-2 {
    right: 3vw;
    top: 11svh;
  }
}

@media (max-width: 568px) {
  body {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .bird {
    scale: 0.85;
  }
  div.container {
    max-width: 95%;
  }
  .bird-1 {
    left: -15vw;
    top: 5svh;
  }
  .bird-2 {
    right: 4vw;
    top: 8svh;
  }
}

@media (max-width: 420px) {
  body {
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }

  .container {
    scale: 0.95;
    margin-top: 10vh;
  }

  .bird {
    scale: 0.7;
  }
  div.container {
    max-width: 95%;
  }
  .bird-1 {
    left: -35vw;
    top: 5svh;
  }
  .bird-2 {
    right: 8vw;
    top: 8svh;
  }
}

@media (max-width: 337px) {
  /* .bird {
    display: none;
  } */
  .container {
    margin-top: 10vh;
  }
}
