* {
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-style: normal;
}
.nav {
  display: flex;
  justify-content: space-between;

  border-bottom: 1px solid black;
}
.nav nav {
  display: flex;
}

.nav nav a {
  padding: 1rem;
  border-left: 1px solid black;
}

.hero-link {
  padding: 1rem;
  border-right: 1px solid black;
  text-decoration: none;
  color: black;
}
.hero {
  min-height: calc(100vh - 181px);
  display: flex;
  align-items: center;
  justify-content: start;
}
.hero-h1 {
  font-size: 2.5rem;
  padding: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
.linky-bois {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
.linky-bois a {
  flex: 1;
  border-right: 1px solid black;
  min-height: 8rem;
  padding: 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.linky-bois a h2 {
  font-weight: 500;
}
.linky-bois a:hover,
.nav nav a:hover {
  background: rgb(217, 217, 255);
}
.linky-bois a:last-of-type {
  border-right: none;
}

.external-link {
  width: 1.75rem;
  height: 1.75rem;
}

.about {
  max-width: 1280px;
  margin: 2rem;
}
.about-title {
  font-size: 1.5rem;
}
.about-group {
  margin: 2rem 0;
}
.about-media-item {
  margin: 1rem 0;
}
.readme {
  max-width: 1280px;
  margin: 2rem;
  display: flex;
  flex-wrap: wrap;
}
.readme div {
  flex: 1;
  gap: 2rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .linky-bois {
    flex-direction: column;
    border-bottom: initial;
  }
  .linky-bois a {
    border-right: initial;
    border-bottom: 1px solid black;
  }
}

@media (max-width: 640px) {
  .readme {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-h1 {
    font-size: 2rem;
  }
}
