* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica", sans-serif;
  color: white;
  background-color: black;
  text-align: center;
  margin: 0 auto;
}

main {
  max-width: 450px;
  margin: 0 auto;
}

h1 {
  color: black;
  font-size: 4em;
  padding: 0;
  font-weight: bold;
  font-style: italic;
  text-align: left;
  background-color: #F00AF5;
}
h1 .h1-img {
  background-image: radial-gradient(#F00AF5, black);
  transform: scaleY(1.15);
  width: 100%;
  box-shadow: 1px 4px black;
  margin: 0 auto;
}

h2 {
  color: #2aa;
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: #2aa;
}
a:hover {
  color: #F00AF5;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

footer {
  color: #828282;
  background-color: rgba(30, 30, 30, 0.8);
  line-height: 24px;
  font-size: 75%;
  padding-bottom: 2em;
  position: sticky;
  bottom: 0;
}

.heading {
  max-width: 450px;
  display: grid;
  grid-template-columns: max-content 1fr;
}
.heading img {
  max-height: 92px;
  width: 100%;
}

.homepage-container {
  display: grid;
  padding-top: 1em;
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr;
  align-items: right;
  justify-items: right;
}

.homepage-item {
  text-align: left;
  font-style: italic;
  font-size: 1.3em;
}
.homepage-item:hover {
  background-color: #222;
  border: 1px solid #F00AF5;
}
.homepage-item .item-img {
  border: 1px solid black;
  width: 100%;
}
.homepage-item .micro {
  display: inline;
  max-height: 1.3em;
  border: none;
  box-shadow: none;
}

.err {
  transform: rotate(90deg);
  text-decoration: underline;
}

.spirit {
  background: rgb(49, 61, 0);
  background: radial-gradient(circle, rgb(49, 61, 0) 0%, rgb(0, 0, 0) 40%, rgb(0, 0, 0) 44%, rgb(0, 0, 0) 51%, rgba(252, 70, 107, 0) 100%);
}

@media screen and (min-width: 900px) {
  main {
    max-width: 1000px;
    margin: 0 auto;
  }
  .homepage-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.header-nav {
  width: 185px;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  background: #000;
  display: inline-grid;
  grid-column: 0/1;
  grid-template-columns: 1fr max-content minmax(1fr) 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: "hero hero hero link1" "hero hero hero link2" "hero hero hero link3" "linka linkb linkc linkc ";
  grid-gap: 1px;
  box-shadow: 1px 4px rgb(0, 0, 0);
}
.header-nav a {
  place-self: stretch stretch;
  align-content: center;
  justify-content: center;
  align-self: stretch;
  justify-self: stretch;
  background: #ddddee;
  text-align: center;
  font-size: 110%;
  color: blue;
  /* links set 2: column 2 */
}
.header-nav a:hover {
  color: red;
}
.header-nav a:nth-child(n+2):nth-child(-n+4) {
  text-transform: uppercase;
}
.header-nav a:nth-child(2) {
  grid-area: link1;
}
.header-nav a:nth-child(3) {
  grid-area: link2;
}
.header-nav a:nth-child(4) {
  grid-area: link3;
}
.header-nav a:nth-child(5) {
  grid-area: linka;
}
.header-nav a:nth-child(6) {
  grid-area: linkb;
}
.header-nav a:nth-child(7) {
  grid-area: linkc;
}
.header-nav .hero {
  color: white;
  grid-area: hero;
  place-self: stretch stretch;
  width: fit-content;
}
.header-nav .hero img {
  width: 100%;
  height: 100%;
  padding-bottom: 4px;
  background: #000;
}

/*# sourceMappingURL=styles.css.map */