@font-face {
  font-family: "Century";
  src: url("../fonts/century-webfont.woff2") format("woff2"), url("../fonts/century-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
html {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: Century, serif;
  color: #FFDCAE;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.5;
  }
}

a {
  color: #FFDCAE;
}

h1 {
  line-height: 1.2;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}

#background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

#foreground {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; /* Updated line */
  width: 100%;
  height: 100vh;
}

#cover {
  background-image: url("../img/bg.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

#fade {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  z-index: 1;
}

#content {
  margin: 15px;
  text-align: center;
  z-index: 2;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  padding: 50px;
  background-color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 767px) {
  #content {
    padding: 20px;
  }
}

#logo {
  /* Add your logo image */
  width: 720px;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #logo {
    width: 100%;
  }
}

#text-area {
  margin-top: 20px;
  max-width: 800px;
}
#text-area .lang-content {
  display: none;
}
#text-area .lang-content.en {
  display: block;
}

.button {
  background-image: url("../img/button.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: 15px 40px 19px;
  line-height: 1;
  text-decoration: none;
  display: inline-block;
  font-size: 24px;
  margin-top: 20px;
  cursor: pointer;
  background-blend-mode: lighten;
  transition: background-color 0.2s ease-in-out;
}
.button:hover {
  /* darken */
  background-color: rgba(255, 220, 174, 0.025);
}
.button:last-child {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .button {
    padding: 12px 25px 15px;
    font-size: 18px;
  }
  .button:last-child {
    margin-left: 0;
  }
}

#download-info {
  margin-top: 20px;
  font-size: 80%;
}

/*# sourceMappingURL=style.css.map */
