@font-face {
  font-family: "Garamond";
  src: url("./fonts/EBGaramond-Bold.ttf");
  font-weight: 300;
}


#language {
  position: absolute;
  
  font-weight: 800;
  z-index: 500000;
  font-size: 32px;
  right: 1.5%;
  top: 1%;
  
}

#language a {
  text-decoration: none!important;
  color: black!important;
}


#hero {
  min-height: 100vh;
  background: url("./assets/vikkk.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
}

#bookWrapper {
  display: flex;
  justify-content: center;
}

.bookTranslate {
  transform: translateY(-484px);
  opacity: 66%;
}

#bookWrapper img {
  width: 100%;
  border: solid 10px white;
}

.reducePicture {
  width: 66% !important;
}

#videoFrame {
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
}

#loopVideo {
  transform: scale(1.66);
}

#heroTexts {
  position: absolute;
  z-index: 200;
  text-align: center;
  width: 100%;
  padding-top: 35vh;
}

#author {
  font-size: 142px;
  font-weight: 900;
  font-family: 'Garamond';
  opacity: 30%;
  color: white;
  letter-spacing: 10px;
}

#title {
  font-size: 96px;
  letter-spacing: 10px;
  transform: translateY(-50px);
  font-family: 'Garamond';
  color: rgb(49, 49, 49)
}


button {
  background-color: coral;
  color: rgb(24, 24, 24);
  font-family: 'Garamond';
  padding: 10px !important;
  border: none !important;
  font-size: 48px !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  opacity: 90%;
  border-radius: 10px!important;
  border: solid 2px rgb(112, 112, 112) !important;
}

.buttonFrame {
  padding-top: 316px;
}

#heroRow {
  justify-content: center;
  padding-top: 192px;
}

#bookTooltip {
  padding-left: 50px;
  padding-top: 14px;
  font-size: 20px;
  text-align: justify;
}

.showUp {
  animation-name: showUp;
  animation-duration: 0.5s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}


#buyFrame {
  background: url("./assets/vikker.jpg");
  min-height: 70vh;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: 64px;
}

.paymentWrapper {
  display: flex;
  justify-content: center;
  text-align: justify;
}




footer {
  background-color: coral !important;
  z-index: 50000;
  position: relative;
}

footer a {
  color: unset !important;
  color: var(--highLightColor) !important;
  text-decoration: none!important;
}

#footerItems {
  justify-content: space-between !important;
  color: black !important;
  height: 80px;
  padding-top: 30px;
}

#gdprMain {
  background-color: rgb(253, 253, 253);
  padding-bottom: 200px;
}

#gdpr {
  color: rgb(0, 0, 0);
  padding-top: 200px;
  
}

#gdpr h3, #gdpr h4 {
  margin-top: 100px;
}

.paymentTooltip {
  width: 66%;
}



@media screen and (max-width: 1920px) {
  #loopVideo {
    transform: scale(1);
  }
}

@media screen and (max-width: 1024px) {
  #loopVideo {
    width: 200%;
    transform: translate(-120px, -200px);
  }

  #author {
    font-size: 32px;
  }

  #title {
    font-size: 28px;
    transform: translateY(50px);
  }

  #heroTexts {
    padding-top: 25vh;
  }

  .bookTranslate {
    transform: translateY(-584px);
    opacity: 66%;
  }
  #heroRow {
    padding-top: 0px;
    transform: translateY(-192px);
    flex-direction: column-reverse;
  }
  #bookTooltip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .paymentWrapper {
    margin-top: 0px;
  }


  .buttonFrame {
    padding-top: 100px;
  }

  footer {
    height: 220px;
    text-align: center;
  }
  #footerItems div {
    text-align: center!important;
  }
  .paymentTooltip {
    width: 100%;
  }
  button {
    font-size: 40px!important;
  }
  #butterfly {
    display: none;
  }
}




@keyframes hideVid {
  0% {
    opacity: 100%;
  }

  90.5% {
    opacity: 100%;
  }

  100% {
    opacity: 0%;

  }
}


@keyframes showUp {
  0% {
    opacity: 0%;
    transform: scale(0.5);
  }

  100% {
    opacity: 100%;
    transform: scale(1);

  }
}