/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* CSS start */

body {
  font-family: "Zen Antique Soft", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #004040;
}

#bg {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: center / cover no-repeat url("/images/washi_bg.jpg");
}

main {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

main {
  font-size: 0.9rem;
  line-height: 1.4rem;
}

@media (min-width: 480px) {
  main {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

main section {
  display: flex;
}

main section div#wrapper {
  flex-grow: 1;
  box-sizing: border-box;
  text-align: center;
  padding: 0 20px;
  letter-spacing: 0.1rem;
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
}

main section::before,
main section::after {
  content: " ";
  position: relative;
  display: block;
  width: 70px;
  height: 100vh;
  height: 100dvh;
  background: center / cover no-repeat url("/images/gold_strip.png");
  z-index: 3;
}

/* buttons */
#buttons {
  margin-top: 40px;
}
.btn-77 {
  margin: 0 auto;
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(
    to right,
    #bf953f,
    #fcf6ba,
    #b38728,
    #fbf5b7,
    #aa771c
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  /* color: rgb(121, 103, 3); */
  /* color: #004040; */
  color: #fff;
  text-shadow: 1px 1px 2px #004040;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition-duration: 1.5s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.144);
  background-size: 200% 200%;
  text-decoration: none;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  /*** full width block ***/
  /* width: 100%; */
}

.btn-77:hover {
  transform: scale(0.95);
  transition-duration: 1.5s;
  animation: gradient 3s ease infinite;
  background-position: right;
}

.btn-77:disabled {
  pointer-events: none;
  opacity: 0.65;
  color: #7e7e7e;
  background: #dcdcdc;
  box-shadow: none;
}
