*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #000;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}
header {
  width: 100%;
  overflow: hidden;
}

h1.fluid-title {
  font-family: "Paytone One", sans-serif;
  line-height: 0.7;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: none;
  max-height: none;
}

h1.fluid-title .line {
  display: block;
  white-space: nowrap;
}

.title {
  font-size: 4rem;
  font-weight: 900;
  color: #f6720d;
  text-shadow: -5px 0px 0 #000;
  line-height: 1;
}

.indent {
  padding-left: 0.5em;
}

/* Description */
.description {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #000;
  color: #fff;
}

.description p {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Posts */
.feed {
  max-width: 100%;
}

.post {
  padding: 3rem 2rem;
  background-color: #fff;
  color: #000;
  overflow: hidden;
}

.post:nth-child(even) {
  background-color: #000;
  color: #fff;
}

.post:nth-child(even) .post-description {
  color: #ccc;
}

.post:nth-child(even) .post-link {
  color: #a5b4fc;
}

.post:nth-child(even) .post-link:hover {
  color: #c7d2fe;
  background-color: #a5b4fc22;
}

.post:nth-child(even) .post-title::after {
  background-color: #ffffff88;
}

.post-title {
  font-family: "Paytone One", sans-serif;
  font-weight: 900;
  line-height: 0.5em;
  margin-bottom: 1rem;
  white-space: nowrap;
  position: relative;
  padding-bottom: 0.3em;
}

.post-title::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0.3em;
  background-color: #00000088;
}

.post-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.post-link {
  font-size: 1rem;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.post-link:hover {
  color: #4f46e5;
  background-color: #6366f122;
}

/* Tablet and up */
@media (min-width: 768px) {
  .title {
    font-size: 8rem;
    text-shadow: -8px 0px 0 #000;
  }

  .title .indent {
    padding-left: 4rem;
  }

  .description {
    padding: 4rem;
  }

  .description p {
    font-size: 1.5rem;
  }

  .post {
    padding: 4rem 6rem;
  }


  .post-description {
    font-size: 1.25rem;
  }

  .post-link {
    font-size: 1.25rem;
  }

}

/* Footer */
footer {
  padding: 2rem;
  text-align: center;
  background-color: #000;
  border-top: 1px solid #333;
}

footer a {
  color: #a5b4fc;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  color: #c7d2fe;
}

/* Desktop */
@media (min-width: 1024px) {
  .title {
    font-size: 10rem;
    text-shadow: -10px 0px 0 #000;
  }

  .title .indent {
    padding-left: 5rem;
  }

  .post {
    padding: 5rem 10rem;
  }

}
