body,
html {
  margin: 0;
  padding: 0;

  width: 100%;
  height: 100%;

  overflow-x: hidden;
  overflow-y: hidden;

  background: #F4F4F4;
  color: #000000;

  font-family: "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

a,
a:visited,
a:hover,
a:active {
  color: #000;
  text-decoration: none;
}

.main {
  width: 100%;
  height: 100vh;

  overflow: hidden;

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;

  gap: 10px;

  padding: 20px;
}

/* NAV */

.nav {
  grid-column: 2;
  grid-row: 1;

  align-self: start;
  justify-self: center;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  width: 400px;

  padding-top: 60px;
}

.nav a {
  text-align: center;
  font-size: 14px;
}

/* HERO */

.hero {
  grid-column: 2;
  grid-row: 2;

  align-self: center;
  justify-self: center;
}

.hero-image-wrap {
  position: relative;
  width: 360px;
  max-width: 100%;
}

.hero-image {
  width: 100%;
  display: block;
}

h1 {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  margin: 0;

  color: #FFF;

  font-size: 120px;
  font-weight: 400;
  line-height: 110%;

  white-space: nowrap;

  mix-blend-mode: difference;
}

.hero-initials {
  position: absolute;
  bottom: 10px;
  right: 10px;

  max-height: 20px;
  width: auto;

  mix-blend-mode: difference;
}

/* FOOTER */

.footer {
  grid-column: 2;
  grid-row: 3;

  align-self: end;
  justify-self: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 10px;

  padding-bottom: 20px;
}

.pmtm {
  width: 86px;
}

/* RELEASE */

.release-card {
  grid-column: 3;
  grid-row: 3;

  justify-self: end;
  align-self: end;

  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;

  gap: 23px;

  padding: 0 65px 65px 0;
}

.release-image {
  width: 72px;
  height: 72px;

  object-fit: cover;

  animation: spin 16s linear infinite;
}

.release-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* TYPE */

.caption {
  font-size: 12px;
  margin: 0;
}

.caption-link {
  text-decoration: underline;
}

/* MOBILE */

@media screen and (max-width: 768px) {

  body,
  html {
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main {
    width: 100%;
    height: auto;

    overflow: visible;

    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;

    gap: 48px;

    padding: 32px 24px;
  }

  .nav {
    grid-column: 1;
    grid-row: 1;

    width: 100%;
    max-width: 400px;

    padding-top: 0;
  }

  .hero {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-image-wrap {
    width: 100%;
    max-width: 360px;
  }

  .release-card {
    grid-column: 1;
    grid-row: 3;

    justify-self: end;
    align-self: center;

    align-items: flex-end;

    padding: 0;
  }

  .footer {
    grid-column: 1;
    grid-row: 4;

    padding-bottom: 0;
  }
}

/* FADE */

.fade-in {
  animation: fadeIn ease 2s;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* SPIN */

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}