h1 {
  color: #bcfdfc;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: lores-9-narrow, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: lores-9-minus-wide, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

p {
  color: #fff;
  margin-bottom: 10px;
  font-family: lores-9-plus-wide-bold-alt, sans-serif;
}

.flex-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.body {
  background-color: #091d1d;
  background-image: url('../images/web-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.code-embed {
  width: 100%;
  height: 100%;
  min-height: 5000px;
}

.heading {
  color: #7dacab;
}

.heading-2 {
  flex: none;
}

.div-block {
  flex-flow: column;
  width: 756px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
}

.paragraph {
  font-family: lores-9-plus-wide-bold-alt, sans-serif;
}

.copyright {
  color: #389172;
  position: relative;
}

.text-block {
  padding: 12px 20px;
  position: fixed;
  inset: auto 0% 0%;
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 24px;
  }

  p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 24px;
  }

  .div-block {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}


