html,
body,
.page {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}

.page {
  min-height: 100%;
  height: auto;
  position: relative;
  z-index: 100;
  overflow-y: auto;
}
.bg {
  position: fixed;
  bottom: 70px;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-image: url("/assets/img/bg.png");
  background-size: contain;
}

.logo {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: block;
  padding: 42px;
}
.logo > img {
  width: calc(100%);
}

main {
  padding: 0 42px 0 42px;
  text-align: center;

  font-family: "Graphik LCG";
  font-style: normal;
  font-weight: 450;
  font-size: 12vw;
  line-height: 100%;
  /* or 60px */

  letter-spacing: -0.2px;

  /* black */

  color: #000000;
}

footer {
  display: block;
  width: 100%;
  height: 100px;
}
.inner-footer {
  position: absolute;
  height: 80px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

@media (min-width: 768px) {
  .bg {
    bottom: 0;
    width: 80%;
    height: 80%;
  }
  main {
    text-align: left;
    padding: 45px 0 0 86px;
    font-size: 60px;
  }
  footer {
    height: 350px;
  }
  .inner-footer {
    flex-direction: column;
    height: 300px;
    justify-content: start;
  }

  .inner-footer > a {
    margin: 0 0 5px 86px;
  }

  .logo {
    width: 298px;
  }
}
