:root {
  --magenta: #f622ff;
  --cyan: #55fffe;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 5rem 1rem;
  display: flex;
  position: relative;
}

.logo-image {
  width: 100%;
  max-width: 480px;
  margin: 1rem 0;
}

.code-embed {
  color: #000;
  width: 100%;
  max-width: 512px;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.text-block {
  color: #000;
  text-align: center;
  margin-bottom: 1rem;
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

.presave-buttons {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #f624ff;
  text-align: center;
  background-color: #0000;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 512px;
  height: auto;
  padding: 8px;
  display: inline-flex;
  position: relative;
}

.button {
  background-color: #0000;
}

.presave-button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  background-color: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 8px 16px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.presave-button:hover {
  color: var(--magenta);
  background-color: #55fffe;
  text-decoration: none;
}

.presave-button.apple-music-presave {
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
}

.text-block-2 {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
}

.footer {
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.tos-link {
  color: var(--magenta);
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

.tos-link:hover {
  text-decoration: none;
}

.noise-grain-embed {
  z-index: 9999;
  opacity: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  width: 100vw;
  height: 100vh;
  margin: 0;
  display: flex;
  position: fixed;
  inset: 0%;
}

.code-embed-2 {
  width: 0%;
  display: none;
}

.text-block-3 {
  text-align: center;
  max-width: 64ch;
  font-size: 10px;
  line-height: 1.3;
}

@media screen and (max-width: 479px) {
  .presave-buttons {
    padding-left: 0;
    padding-right: 0;
  }

  .presave-button {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    width: 47%;
  }

  .text-block-2 {
    font-size: 12px;
  }

  .footer {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .noise-grain-embed {
    width: 100svw;
    height: 100svh;
  }
}


