body {
  background: black;
  margin: 0;
}

a, span, div, p{
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  color: white;
  line-height: 18px;
}

.logo {
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  display: block;
  width: auto;
  height: 50px;
}

.bgimg {
  width: 1200px;
  height: auto;
  margin: auto;
  display: block;
}

.txtcontainer {
  position: absolute;
  transform: translate(calc(50vw - 600px),-625px);
  margin: 100px;
  top: 750px;
}

.title {
  font-size: 36px;
  width: 50vw;
  word-break: break-word;
  font-weight: 700;
  line-height: 50px;
}

.desc {
  width: 50vw;
  word-break: break-word;
  font-weight: 700;
  line-height: 25px;
}

.bookmarklet {
  font-family: 'Noto Sans', sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 19.2px;
  padding: 20px;
  padding-left: 40px;
  padding-right: 40px;
  line-height: 200px;
  background: #3b8526;
  border-top: 5px solid #6bc349;
  border-bottom: 5px solid 
#2a631c;
  border-radius: 5px;
  transition: 0.4s;
}

.bookmarklet:hover {
  border-top: 5px solid transparent;
  border-bottom: 5px solid 
transparent;
  background: black;
  transition: 0.4s;
}

.bookmarklet:active {
  background: white;
  color: black;
  box-shadow: 0 0 100px white, 0 0 100px white, 0 0 100px white, 0 0 100px white;
    transform: perspective(300px) rotateX(30deg);
  transition: 2s;
}

@media screen and (max-width: 1200px) {
  .bgimg {
      transform: translate(calc(50vw - 50%))
  }
  .txtcontainer {
      transform: translate(0px,-625px);
  }
}