/* 1. Use a more-intuitive box-sizing model. */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

/* Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Remove built-in form typography styles */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Create a root stacking context */
#root, #__next {
  isolation: isolate;
}

header {
    width: 100%;
    padding: 2rem;
    text-align: center;
    background-color: #f5f5f5;
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

header nav a {
    padding: 0.5rem 1rem;
}

header h1 {
    margin: 0;
}
header a {
    color: inherit;
    text-decoration: none;
}


header img {
    max-width: 33%;
    margin: 0 auto;
    display: block;
    margin-top: -0rem;
    margin-bottom: -0rem;
}

.about-copy {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  line-height: 1.9;
  text-wrap: pretty;
  background-color: #f5f5f5;
  border-left: 6px solid #d4d4d4;
  border-radius: 8px;
}

.links-masonry {
  column-count: 2;
  column-gap: 1.25rem;
  padding: 1.25rem;
}

.links-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
}

.links-item img {
  width: 100%;
  height: auto;
}