h1, h2, h3, h4, h5, p {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'HCo Gotham SSm';
  src: url('/fonts/HCo_Gotham_1_Web/hco_fonts/woff2/Gotham-Book_Web.woff2') format('woff2'),
       url('/fonts/HCo_Gotham_1_Web/hco_fonts/woff/Gotham-Book_Web.woff') format('woff'),
       url('/fonts//HCo_Gotham_1_Web/hco_fonts/woff2/Gotham-Bold_Web.woff2') format('woff2'),
        url('/fonts/HCo_Gotham_1_Web/hco_fonts/woff/Gotham-Bold_Web.woff') format('woff');
  /* Add more src declarations if your font has different formats */
}

@font-face {
  font-family: 'HCo Gotham SSm';
  src: url('/fonts//HCo_Gotham_1_Web/hco_fonts/woff2/Gotham-Bold_Web.woff2') format('woff2'),
      url('/fonts/HCo_Gotham_1_Web/hco_fonts/woff/Gotham-Bold_Web.woff') format('woff');
  /* Add more src declarations if your font has different formats */
  font-weight: bold;
}


body {
  background-color: black;
  color: white;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  font-family: 'HCo Gotham SSm', sans-serif;
}

.page-container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item {
  margin: 0 72px;
  margin-top: 32px;
}

.title {
  margin-top: 32px;
}

h3 {
  font-weight: bold;
  font-size: 22px;
}

span {
  font-weight: normal;
}

h4 {
  margin-top: 12px;
  font-weight: normal;
  font-size: 20px;
}

p, h4, span {
  color: #cdcdcd;
}

.p-1 {
  font-size: 18px;
}

.p-2 {
  font-size: 18px;
}

.iframe {
  min-height: 600px;
  margin: 0 auto;
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.artwork-frame {
  margin: 0 auto;
  width: 500px;
  position: relative;
}

iframe {
  width: 500px;
  height: 500px;
}

.iframe p {
  position: absolute;
  top: 550px;
  right: -130px;
  transform: translate(-50%, -50%);
  font-size: 20px;
}

.line-animation {
  width: 1px;
  height: 30px;
  background-color: white;
  position: absolute;
  top: 500px;
  right: 70px;
  animation: line 2s infinite;
}

@keyframes line {
  0% {
    top: 500px;
  }
  100% {
    top: 530px;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  margin: 0 50px;
  margin-bottom: 32px;
}

.right-footer {
  display: flex;
  flex-direction: column;
  column-gap: 16px;
  align-self: flex-end;
}

.right-footer img {
  margin-top: 10px;
  height: 18px;
}

.qrCode-container {
  display: flex;
  column-gap: 16px;
}

.qrCode-container img {
  width: 108px;
  height: 108px;
}

.qrCode-container p {
  font-size: 18px;
}

.left-content {
  display: flex;
  align-self: flex-end;
}