.body {
  background-color: #070707;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  display: flex;
}

.heading {
  z-index: 1000;
  color: #fff;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 5vw;
  font-weight: 800;
  line-height: 120%;
  position: relative;
}

.text-block {
  z-index: 10000;
  color: #fff;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.text-block:hover {
  text-decoration: underline;
}

.source {
  color: #fff;
  width: 0;
  height: 0;
  margin-top: 0;
  text-decoration: none;
  position: absolute;
  inset: auto;
}

.source:hover {
  text-decoration: underline;
}

.brand {
  z-index: 9999;
  justify-content: center;
  align-items: center;
  width: 300px;
  padding: 20px;
  display: flex;
}

.logo {
  width: 100%;
  display: block;
  overflow: visible;
}

.link-email {
  z-index: 9999;
  color: #fff;
  letter-spacing: .5px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-email:hover {
  color: #e73c3e;
}

@media screen and (max-width: 991px) {
  .heading {
    font-size: 40px;
  }

  .text-block {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .brand {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
}

@media screen and (max-width: 479px) {
  .heading {
    font-size: 28px;
  }

  .text-block {
    font-size: 10px;
  }

  .brand {
    padding-left: 20%;
    padding-right: 20%;
  }

  .brand.w--current {
    width: 130px;
    margin-left: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
  }
}


