html {
  background: #ffe;
  color: #08150c;
  font-family: "Inter";
  line-height: 1.5;
  font-size: 16pt;
}

body {
  margin: auto;
  padding: 0;
}

h1 {
  text-align: center;
  margin: 0.2em 0;
}

.intro h1 {
  font-weight: normal;
}

h2 {
  margin: 0.2em 0;
}

.container {
  padding: 1em max(0.5em, 5vw);
  max-width: 80ch;
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 1em;
}

#birds {
  display: flex;
  justify-content: space-between;
  margin-inline: 7vw;
  max-height: calc(max(5vw, 15em));
  height: 30vw;

  & .bird {
    display: flex;
    justify-content: center;
    width: 30vw;
    height: 30vw;
    transform-origin: bottom center;
    fill: currentColor;

    & svg {
      max-width: calc(max(5vw, 15em));
      max-height: calc(max(5vw, 15em));
      height: 100%;
      width: 100%;
      transform: translateX(10%) translateY(1%);
    }

    &:last-child svg {
      transform-origin: bottom center;
      transform: rotateY(180deg) translateY(10vw) scale(0.75) translateX(10%);
    }
  }
}

.projects {
  background-color: #08150c;
  color: #ffe;
  padding: 5em 0 1em;
}

ol li {
  margin: 0.5em 0;
}

footer {
  text-align: center;
}

a {
  color: inherit;
}

.intro {
  text-align: start;
  padding: 2em;
}

.motto {
  display: block;
  text-decoration: none;
  font-size: min(3em, 12vw);
  margin-bottom: 0.5em;
  text-align: center;

  & b {
    font-weight: 900;
  }

  + img {
    display: block;
    margin-inline-start: auto;
  }
}

.blog {
  text-align: justify;
}

.muted {
  opacity: 0.7;
}
