.section {
  background-image: radial-gradient(circle, #00000080 33%, #fff0), url('../images/jacket.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  min-height: 100svh;
  padding: 40px;
  display: flex;
}

.div-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 960px;
  display: flex;
  position: relative;
}

.logo-image {
  filter: contrast(200%) invert();
  width: 100%;
  max-width: 360px;
}

.text-block {
  color: #fff;
  text-align: center;
  margin-top: 12px;
  font-family: Indie Flower, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.socials {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.social-link {
  transition: all .2s;
}

.social-link:hover {
  transform: scale(1.2);
}

.code-embed {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.noise-grain-embed {
  z-index: 99;
  pointer-events: none;
  mix-blend-mode: color-dodge;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fanvids-embed {
  width: 100%;
  max-width: 960px;
  height: 512px;
  margin-top: 16px;
  margin-bottom: 16px;
  position: relative;
}

.link {
  color: #fff;
  text-align: center;
  background-color: #000;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 12px 24px;
  font-family: Indie Flower, sans-serif;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.link:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

@media screen and (max-width: 991px) {
  .div-block {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  .div-block {
    width: 90%;
  }

  .link {
    font-size: 14px;
  }
}

@media screen and (max-width: 479px) {
  .section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .div-block, .code-embed {
    width: 100%;
  }

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

  .link {
    font-size: 12px;
  }
}


