body {
  max-width: none;
}

h2.logo-replacement {
  display: none;
  font: 200% "Goudy Bookletter 1911", serif;
  text-align: center;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about nav ul {
  display: flex;
  font-size: 90%;
  flex-direction: column;
  gap: 10px;
	line-height: 200%;
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
	text-align: center;
}

.blog {
  /* background: hsl(0, 0%, 90%); */
  /* color: black; */
  box-shadow: inset 0 0 0 4px hsl(0, 0%, 30%), inset 0 0 0 8px hsl(0, 0%, 20%), inset 0 0 0 10px hsl(0, 0%, 30%);
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 25em;
  margin: 0 0 20px 0;
  padding: 40px;
}

.blog .actions {
  align-self: center;
  display: grid;
  gap: 10px;
}

.blog .excerpt {
  align-self: center;
  font-size: 140%;
  line-height: 120%;
  margin: 0;
}

.catalog {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.catalog .item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.catalog .item:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 1px;
  box-shadow: 0 0 0 20px hsla(0, 0%, 100%, 0.1);
}

.catalog .item h3 {
  font: 140% "Goudy Bookletter 1911", serif;
  margin: 0;
}

.catalog .item p {
  font-weight: 300;
  margin: 0;
}

.catalog .item img {
  width: 100%;
}

.hero {
  background: #052137;
  display: grid;
  gap: 20px;
  padding: 20px;
  position: relative;
}

.hero::after{
  content: '';
  position: absolute;
  top: 10px;
  left: 100%;
  width: 10px;
  height: 100%;
  background: repeating-conic-gradient(hsl(0, 0%, 10%) 0% 25%, transparent 0% 50%) 50% / 5px 5px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 10px;
  width: calc(100% - 10px);
  height: 10px;
  background: repeating-conic-gradient(hsl(0, 0%, 10%) 0% 25%, transparent 0% 50%) 50% / 5px 5px;
}

.hero a.button {
  background: hsla(0, 0%, 100%, 0.75);
}

.hero lite-youtube {
  background-repeat: no-repeat;
  background-size: 90%;
  display: block;
  max-width: 100%;
}

.hero .presskit {
  font-size: 80%;
  margin-top: -10px;
  text-align: center;
}

.root {
  margin: 0 auto;
  max-width: 2000px;
}

.top {
  display: grid;
  gap: 40px;
  grid-template: "hero about" / 1fr 230px;
  margin-bottom: 40px;
}

.top .hero {
  grid-area: hero;
}

@media screen and (max-width: 900px) {
  .blog {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 800px) {
  img.large-logo {
    display: none;
  }

  h2.logo-replacement {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero .description {
    grid-column: 1;
  }
}

@media screen and (max-width: 600px) {
  .catalog {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -12px;
  }
  
  .top {
    grid-template: "hero"
      "about";
  }
}