:root {
  --color-fg: #fff;
  --color-bg: #000;
}
body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--color-bg);
  color: var(--color-fg);
}
header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
main {
  margin: auto;
  & .content {
    align-items: center;
    max-width: 384px;
  }
  & h1 {
    font-family: sans-serif;
    font-size: 2em;
  }
  & h2 {
    font-family: sans-serif;
    font-size: 1.5em;
  }
  & .greetings {
    font-family:
      "Segoe Print",
      "Bradley Hand",
      Chilanka,
      TSCu_Comic,
      casual,
      cursive;
    font-weight: normal;
    display: block;
    margin-top: 24px;
  }
  & p {
    font-family:
      Charter,
      "Bitstream Charter",
      "Sitka Text",
      Cambria,
      serif;
    font-weight: normal;
  }
}
.logo {
  width: 128px;
}
.nav-icon {
  display: flex;
  gap: 8px;
  align-items: center;
  background-color: var(--color-bg);
}
nav a {
  padding: 0 8px;
  border-radius: 4px;
}
nav a:hover {
  filter: invert(1);
}
.icon-insta:before {
  mask-image: url(assets/insta.svg);
}
.icon-rss:before {
  mask-image: url(assets/rss.svg);
}
.nav-icon:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-fg);
  mask-position: center;
  mask-repeat: no-repeat;
}
nav ul {
  padding: 0 16px;
  display: flex;
  gap: 24px;
  list-style: none;
}
nav {
  position: relative;
}
ul.lineup {
  list-style: none;
}
nav:before {
  content: "";
  display: block;
  position: absolute;
  border: 1px solid honeydew;
  width: 100%;
  height: 100%;
  transform: skew(-20deg);
  border-radius: 4px;
  z-index: -1;
}
a {
  text-decoration: none;
}
a:visited {
  color: var(--color-fg);
}
