a {
  color: #fff;
  text-decoration: none;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  padding: 60px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  background-image: linear-gradient(150deg, #000, #181818);
}

.logo {
  width: 80px;
  margin-right: 30px;
}

.div-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  opacity: 0.29;
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

.logo-bg {
  position: absolute;
  left: auto;
  top: -11%;
  right: -8%;
  bottom: auto;
  width: 800px;
  margin-right: 30px;
  opacity: 0.01;
}

.paragraph {
  margin-bottom: -2px;
  font-family: 'PT Sans', sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}

.link {
  cursor: pointer;
}

.link:hover {
  opacity: 0.37;
}

@media screen and (max-width: 479px) {
  .section {
    padding-right: 9px;
    padding-left: 9px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
  }

  .logo {
    margin-right: 0px;
    margin-bottom: 40px;
  }

  .div-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo-bg {
    display: none;
  }

  .paragraph {
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
  }
}