.main-menu-section {
  background-color: #141414;
  position: fixed;
  top: 0;
}

.footer-section {
  mix-blend-mode: normal;
}

.page-content {
  color: white;
  margin-top: 22em;
}

.main-title {
  width: 80%;
  margin-inline: 10%;
  font-family: 'rama-gothic-c';
  font-weight: bold;
  font-size: min(10em, 10vw);
  text-transform: uppercase;
  text-align: center;
}

.sub-title {
  width: 80%;
  margin-inline: 10%;
  font-size: 1.6em;
  font-family: 'Helvetica Now Display';
  margin-bottom: 4em;
  text-align: center;
}

.articles-wrapper {
  display: grid;
  width: 80%;
  margin-inline: 10%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4em;
}

.article-card {
  position: relative;
  background-color: #14141466;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 48em;
}

.article-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #14141480;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 170%;
  padding: 7.5% 4%;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

.article-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1200px) {
  .articles-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .articles-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (pointer: coarse) {
  .page-content {
    margin-top: 11em;
  }
}