@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  background-color: #060606;
  color: #c7c6ac;
  font-family: Spartan;
  display: flex;
  justify-content: center;
  font-synthesis: none;
}

h1 {
  font-family: Spartan;
  text-align: center;
  font-weight: 400;
  font-variant-caps: all-small-caps;
  font-size: 6rem;
}
h1 em {
  font-variant-caps: normal;
  font-size: 0.8em;
}

h2 {
  text-align: center;
  font-weight: 500;
  font-size: 2.5rem;
  margin-top: 5rem;
  margin-bottom: 0.5rem;
  font-variant-caps: all-small-caps;
}

h3 {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 2rem;
}

h4 {
  text-align: center;
  font-weight: 400;
  font-size: 1.8rem;
}

p {
  font-size: 1.6rem;
  line-height:2.5rem;
  text-align: center;
  color:white;
}

.smcaps {
  font-variant-caps: all-small-caps;
}

.credits {
  flex-basis: 100rem;
  margin: 2rem 0;
  font-size: 1.85rem;
  line-height: 1.2;
  padding: 1rem;
}
.credits__single {
  display: grid;
  grid-template-columns: 1;
  gap: 0 2rem;
  text-align: center;
}
.credits__single dt {
  font-variant-caps: all-small-caps;
  margin-top: 1.7rem;
}
.credits__single dd {
  margin-top: 0.6rem;
}
.credits__double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2rem;
}
.credits__double dt {
  text-align: right;
  font-variant-caps: all-small-caps;
  margin-top: 1.7rem;
}
.credits__double dd {
  text-align: left;
  color:#FFF;
  grid-column: 2/3;
  margin-top: 0.6rem;
}
.credits__double dt + dd {
  margin-top: 1.7rem;
}
.credits__inline {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.7rem;
}
.credits__inline li {
  padding: 0.3rem 0.8rem;
  color: #FFF;
}
.credits__music {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.7rem;
}
.credits__music dl {
  text-align: center;
  padding: 0 2rem 2rem 2rem;
  flex-basis: 30rem;
}
.credits__music dt {
  font-style: italic;
  margin-bottom: 0.5rem;
}
.credits__music dd {
  font-size: 1.5rem;
}

footer {
  margin: 3rem;
}


@media screen and (max-width: 800px) {
  .left, .main, .right {
    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */
  }
}