.div-block {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

.div-block-2 {
  z-index: 10;
  width: 100vw;
  min-height: 10rem;
  padding-top: 60px;
  padding-left: 60px;
  position: fixed;
  inset: 0% 0% auto;
}

.body {
  background-color: #000;
}

.div-block-3 {
  z-index: 5;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.paragraph {
  margin-bottom: 0;
}

.paragraph-2 {
  color: #fff;
  text-align: center;
  width: 70%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: Inconsolata, monospace;
  font-size: 24px;
  line-height: 26px;
}

.button {
  color: #000;
  background-color: #fff;
  border: 1px solid #fff;
  font-family: Inconsolata, monospace;
  transition: background-color .35s cubic-bezier(.445, .05, .55, .95);
}

.button:hover {
  color: #fff;
  background-color: #fff0;
}

.text-block {
  color: #616161;
  font-family: Inconsolata, monospace;
  line-height: 14px;
}

@media screen and (max-width: 991px) {
  .text-block {
    line-height: 14px;
  }
}

@media screen and (max-width: 479px) {
  .div-block {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    inset: 0%;
  }

  .div-block-2 {
    z-index: 10;
    padding-top: 20px;
    padding-left: 20px;
  }

  .image {
    max-width: 50%;
  }

  .div-block-3 {
    z-index: 1;
  }

  .paragraph-2 {
    font-size: 18px;
    line-height: 20px;
  }
}


