.section {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #000;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  min-height: 100vh;
  padding: 48px 16px;
  display: flex;
  overflow-x: hidden;
}

.heading {
  color: #fff;
  font-size: 5rem;
  line-height: 1.4;
}

.image {
  width: 90%;
  max-width: 512px;
  margin-top: auto;
  margin-bottom: auto;
}

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

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

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

.code-embed {
  justify-content: center;
  align-items: center;
  width: 96%;
  max-width: 512px;
  display: flex;
}


