body {
  /* Unicode Character “卍” (U+534D) */
  /* https://www.w3schools.com/cssref/css_colors.php */
  /* https://stackoverflow.com/questions/11701311/logo-image-and-h1-heading-on-the-same-line */
  /* font-family: 'KaiTi', '楷体_GB2312', 'SimSun'; */

  /* background: hsl(230, 100%, 50%); */
  /* background: hwb(52 58% 4%); */
  /* background: hsl(53, 78%, 48%); */
  /* background-image: url('https://source.unsplash.com/daily'); */
  /* 17.10.2024 Soon: Commented background: antiquewhite; */
  align-items: center;
  justify-items: center;
  justify-content: center;

  /* 11.08.2024 Soon: Added background image. */
  background-image: url("images/thumbnail/background.jpg");

  /* Full width and height */
  width: 100%;
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  /*
  border-style: solid;
  border-width: 1px;
  color: hsl(240, 0%, 100%);
 */
}

div.gallery {
  border: 0px solid black;
  /* 11.08.2024 Soon: Need to have background colour. Otherwise, the labels
  of each image are not readable. */
  background: antiquewhite;
}

div.gallery:hover {
  border: 0px solid black;
  /* 28.07.2024 Soon: Put the transition effect here,
  so that the image at the header line is not affected. */
  transform: scale(1.1, 1.1);
  transition: .8s transform;
}

div.gallery img {
  width: 100%;
  /* height: auto; */
  height: 50%;
  /* https://bennettfeely.com/clippy/ */
  /*
  Triangle = 3-sided, clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  Bevel = 4-sided corner rounded, clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
  Trapezoid = 4-sided, clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  Parallelogram = 4-sided, clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  Rhumbus = 4-sided, clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  Pentagon = 5-sided, clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  Horizontal hexagon = 6-sided, clip-path: polygon(25% 0%, 75% 0%, 100% 50%,75% 100%,25% 100%,0 50%);
  Vertical hexagon = 6-sided, clip-path: polygon(0% 25%, 0% 75%, 50% 100%, 100% 75%, 100% 25%, 50% 0%);
  Heptagon = 7-sided, clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
  Octagon = 8-sided, clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%);
  Nonagon = 9-sided, clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  Decagon = 12-sided, clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 90%, 50% 100%, 20% 90%, 0% 70%, 0% 35%, 20% 10%);
  clip-path: circle();
  */
}

.header img {
  /* 28.07.2024 Soon: Align the image left or right using inline HTML tag instead. */
  /* float: left; */
  /* 03.12.2024 Soon: Do not hard-code the width, otherwise the alignment cannot be set properly.
  width: 160px;
  */
  height: 220px;
  /* background: #555; */
  /* box-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6); */
}

.header h1 {
  color: orangered;
  left: 10px;
  font-family: 'Arial'; /* LiSu */
  /* LiSu-GOOD, STCaiyun, STFangsong, STKaiti-GOOD, STHupo-BUBBLE LIKE,
  STXingkai-XING SHU, STLiti-A BIT FLAT, STXinwei */
  /* font-weight: normal; KaiTi', '楷体_GB2312', 'SimSun'; */
  /* 05.12.2024 Soon: Changed the header font size from 48px to 60px */
  font-size: 60px;
  font-weight: bold;
  text-shadow: 1px 4px 4px rgba(255, 104, 104, 0.9);
  /* 03.12.2024 Soon: To align the texts, you must use the text-align property. */
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*
<h2>Buddhism eBook Series - Compiled By Upasaka Soon Guo-Sen</h2>
*/
.header h2 {
  color: orangered;
  position: relative;
  left: 10px;
  font-family: 'Arial';
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6);
}

/*
h1, h2, h3, h4, h5 {
  padding: 0%;
  text-align: left;
  font-family: 'SimSun';
  font-size: xx-large;
  font-weight: bolder;
}
*/

div.desc {
  padding: 0 6px;
  text-align: center;
  font-family: 'STKaiti';
  /* font-size: large; */
  font-size: 22px;
  font-weight: bolder;
  text-shadow: 1px 2px 2px rgba(73, 104, 163, 0.6);
}

div.desc_en {
  padding: 0 6px;
  text-align: center;
  font-family: 'Arial';
  /* font-size: small; */
  font-size: 12px;
  /* font-weight: normal; */
  text-shadow: 1px 2px 2px rgba(73, 104, 163, 0.6);
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 10px;
  float: left;
  width: 24.99999%;
}

/* For PCs and laptops */
@media only screen and (min-width: 901px) and (max-width: 2000px) {
  .responsive {
    padding: 0 10px;
    width: 24.99999%;
    margin: 10px 0;
    /* https://getcssscan.com/css-box-shadow-examples */
    /* #30 Material */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    /* column-gap: 10px;
    row-gap: 10px; */
    gap: 10px;
    /* border: 5px solid #ccc; */
    padding: 0 10px;
    margin: 10px 0;
    grid-template-areas:
      "item item item item item"
      "item item item item item"
      "item item item item item"
  }

  p {
    /* font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif; */
    /* LiSu-GOOD, STCaiyun, STFangsong, STKaiti-GOOD, STHupo-BUBBLE LIKE,
    STXingkai-XING SHU, STLiti-A BIT FLAT, STXinwei
    <p class="elegantshadow" style="font-family: LiSu">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STCaiyun">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STFangsong">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STKaiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STHupo">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXingkai">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STLiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXinwei">阿弥<font size="5px">🙏</font>陀佛</p>
    */
    font-family: 'Arial'; /* STXinwei */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    text-wrap: nowrap;
    letter-spacing: 0em;
    margin: 50px;

    &::before {
      font-size: 24px;
      content: "🌺";
    }

    &::after {
      font-size: 24px;
      content: "🌺";
    }

    &.elegantshadow {
      color: red;
      /* letter-spacing: .15em; */
      text-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6);
      /* text-shadow:
        1px -1px 0 #767676,
        -1px 2px 1px #737272,
        -2px 4px 1px #767474,
        -3px 6px 1px #787777,
        -4px 8px 1px #7b7a7a,
        -5px 10px 1px #7f7d7d,
        -6px 12px 1px #828181,
        -7px 14px 1px #868585,
        -8px 16px 1px #8b8a89,
        -9px 18px 1px #8f8e8d,
        -10px 20px 1px #949392,
        -11px 22px 1px #999897,
        -12px 24px 1px #9e9c9c,
        -13px 26px 1px #a3a1a1,
        -14px 28px 1px #a8a6a6,
        -15px 30px 1px #adabab,
        -16px 32px 1px #b2b1b0,
        -17px 34px 1px #b7b6b5,
        -18px 36px 1px #bcbbba,
        -19px 38px 1px #c1bfbf,
        -20px 40px 1px #c6c4c4,
        -21px 42px 1px #cbc9c8,
        -22px 44px 1px #cfcdcd,
        -23px 46px 1px #d4d2d1,
        -24px 48px 1px #d8d6d5,
        -25px 50px 1px #dbdad9,
        -26px 52px 1px #dfdddc,
        -27px 54px 1px #e2e0df,
        -28px 56px 1px #e4e3e2; */
    }

    &.deepshadow {
      color: #e0dfdc;
      background-color: #333;
      letter-spacing: .1em;
      /* text-shadow:
        0 -1px 0 #fff,
        0 1px 0 #2e2e2e,
        0 2px 0 #2c2c2c,
        0 3px 0 #2a2a2a,
        0 4px 0 #282828,
        0 5px 0 #262626,
        0 6px 0 #242424,
        0 7px 0 #222,
        0 8px 0 #202020,
        0 9px 0 #1e1e1e,
        0 10px 0 #1c1c1c,
        0 11px 0 #1a1a1a,
        0 12px 0 #181818,
        0 13px 0 #161616,
        0 14px 0 #141414,
        0 15px 0 #121212,
        0 22px 30px rgba(0, 0, 0, 0.9); */
    }

    &.insetshadow {
      color: #202020;
      background-color: #2d2d2d;
      letter-spacing: .1em;
      text-shadow:
        -1px -1px 1px #111,
        2px 2px 1px #363636;
    }

    &.retroshadow {
      color: #2c2c2c;
      background-color: #d5d5d5;
      letter-spacing: .05em;
      text-shadow:
        4px 4px 0px #d5d5d5,
        7px 7px 0px rgba(0, 0, 0, 0.2);
    }
  }
}

/* For tablets */
@media only screen and (min-width: 501px) and (max-width: 900px) {
  .header h1 {
    left: 10px;
    font-family: 'Arial'; /* LiSu */
    /* 05.12.2024 Soon: Changed the header font size from 32px to 48px */
    font-size: 48px;
  }

  .header h2 {
    left: 10px;
    font-family: 'Arial';
    font-size: 16px;
  }

  .responsive {
    padding: 0 10px;
    width: 49.99999%;
    margin: 10px 0;
    /* https://getcssscan.com/css-box-shadow-examples */
    /* #30 Material */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    /* column-gap: 10px;
    row-gap: 10px; */
    gap: 10px;
    /* border: 5px solid #ccc; */
    padding: 0 10px;
    margin: 10px 0;
    grid-template-areas:
      "item item item"
      "item item item"
      "item item item"
  }

  p {
    /* font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif; */
    /* LiSu-GOOD, STCaiyun, STFangsong, STKaiti-GOOD, STHupo-BUBBLE LIKE,
    STXingkai-XING SHU, STLiti-A BIT FLAT, STXinwei
    <p class="elegantshadow" style="font-family: LiSu">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STCaiyun">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STFangsong">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STKaiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STHupo">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXingkai">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STLiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXinwei">阿弥<font size="5px">🙏</font>陀佛</p>
    */
    font-family: 'Arial'; /* STXinwei */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    text-wrap: nowrap;
    letter-spacing: 0em;
    margin: 50px;

    &::before {
      font-size: 24px;
      content: "🌺";
    }

    &::after {
      font-size: 24px;
      content: "🌺";
    }

    &.elegantshadow {
      color: red;
      text-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6);
    }
  }
}

/* For mobile */
@media only screen and (max-width: 500px) {
  .header h1 {
    left: 10px;
    font-family: 'Arial'; /* LiSu */
    /* 05.12.2024 Soon: Retained the header font size to be 32px for mobile version. */
    font-size: 32px;
  }

  .header h2 {
    left: 10px;
    font-family: 'Arial';
    font-size: 16px;
  }

  .responsive {
    padding: 0 10px;
    width: 100%;
    margin: 10px 0;
    /* https://getcssscan.com/css-box-shadow-examples */
    /* #30 Material */
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  }

  .container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    /* column-gap: 10px;
    row-gap: 10px; */
    gap: 10px;
    /* border: 5px solid #ccc; */
    padding: 0 10px;
    margin: 10px 0;
    grid-template-areas:
      "item"
      "item"
      "item"
  }

  p {
    /* font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif; */
    /* LiSu-GOOD, STCaiyun, STFangsong, STKaiti-GOOD, STHupo-BUBBLE LIKE,
    STXingkai-XING SHU, STLiti-A BIT FLAT, STXinwei
    <p class="elegantshadow" style="font-family: LiSu">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STCaiyun">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STFangsong">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STKaiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STHupo">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXingkai">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STLiti">阿弥<font size="5px">🙏</font>陀佛</p>
    <p class="elegantshadow" style="font-family: STXinwei">阿弥<font size="5px">🙏</font>陀佛</p>
    */
    font-family: 'Arial'; /* STXinwei */
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    white-space: nowrap;
    text-wrap: nowrap;
    letter-spacing: 0em;
    margin: 50px;

    &::before {
      font-size: 24px;
      content: "🌺";
    }

    &::after {
      font-size: 24px;
      content: "🌺";
    }

    &.elegantshadow {
      color: red;
      text-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6);
    }
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

img:hover {
  /* transform: scale(1.1, 1.1); */
  /* transition: .8s transform; */
  /* animation: skew 3s infinite; */
  /* transform: skew(-10deg); */
  /* animation-direction: alternate; */
}

/* 25.07.2024 Soon: Added the below segment. */
.bg-img {
  /* The image used */
  /* min-height: 380px; */

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Needed to position the navbar */
  position: relative;
}

/* Position the navbar container inside the image
.container {
  position: absolute;
  margin: 20px;
  width: auto;
} */

/* The navbar */
.topnav {
  /* 03.12.2024 Soon: Do not hard-code the width, otherwise the navigatinal buttons cannot be
  aligned centrally.
  width: 800px;
  */
  align-items: center;
  overflow: hidden;
  /* 11.08.2024 Soon: Removed background colour from the navigation toolbar.
  background-color: antiquewhite;
  */
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Navbar links */
.topnav a {
  float: left;
  color: yellow; /* antiquewhite */
  text-decoration: none;
  text-shadow: 1px 4px 4px rgba(255,255,255, 0.6);
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

:root {
  --shadow-color: #FF9E9E;
  --shadow-color-light: antiquewhite;
}

.button-image-1 {
  /* 07.12.2024 Soon: Added new background provided by Linde. */
  /* background-image: url("images/thumbnail/(1) 法宝系列.jpg"); */
  /* 09.01.2025 Soon: Added new background provided by Linde. */
  background-image: url("images/thumbnail/法宝系列 updated 10 Jan 25.jpg");
}

.button-image-2 {
  /* 07.12.2024 Soon: Added new background provided by Linde. */
  /* background-image: url("images/thumbnail/(2) 名言系列.jpg"); */
  /* 09.01.2025 Soon: Added new background provided by Linde. */
  background-image: url("images/thumbnail/名言系列 updated 10 Jan 25.jpg");
}

.button-image-3 {
  /* 26.04.2025 Soon: Added new button 3 provided by Linde. */
  background-image: url("images/thumbnail/挂画结缘 updated 26 Apr 2025.jpg");
}

.menu-button {
  /*
  align-content: float;
  margin-left: 6px;
  width: 280px;
  height: 50px;
  font-size: 15px;
  text-align: center;
  line-height: 50px;
  color: rgba(255,255,255, 0.9);
  border-radius: 50px;
  background: linear-gradient(-45deg, #FFA63D, #FF3D77, #3CF0C5, #338AFF);
  background-size: 600%;
  animation: anime 16s linear infinite;
  */

  /* 06.12.2024 Soon: Widened the width of the buttons from 180px to 200px. */
  /* 05.02.2025 Soon: Increased the height of the buttons from 70px to 100px. */
  /* 05.02.2025 Soon: Widened the width of the buttons from 200px to 220px. */
  width: 220px;
  height: 100px;
  text-align: center;
  align-content: center;
  /* 04.03.2025 Soon: Commented out the left and right margin.
  margin-left: 30px;
  margin-right: 30px;
  */
  
	cursor: pointer;
	position: relative;
	border-radius: 16px; /* 50px */
	line-height: 20px;
  font-family: 'Arial Narrow';
	font-size: 20px;
  /* 06.12.2024 Soon: Changed the weight from normal to bolder. */
  font-weight: bold;

	/* border: 1px solid #012880; */
  /* background-image: linear-gradient(-180deg, #FF89D6 0%, #C01F9E 100%); */
	/* 07.12.2024 Soon: Commented the blue background.
  background-image: linear-gradient(-180deg, white 0%, antiquewhite 100%);
  box-shadow: 0 1rem 1.25rem 0 rgba(22,75,195,0.50),
							0 -0.25rem 1.5rem rgba(110, 15, 155, 1) inset,
							0 0.75rem 0.5rem rgba(255,255,255, 0.4) inset,
							0 0.25rem 0.5rem 0 rgba(180, 70, 207, 1) inset;
  background: linear-gradient(-45deg, #FFA63D, #FF3D77, #3CF0C5, #338AFF);
  background-size: 600%;
  */
  background-size: 100% 100%;
  /*
  animation: anime 16s linear infinite;
  animation: neon 5s infinite;
  */
}

.menu-button:hover {
  /*
  box-shadow: 0 0 10px 0 #00d7c3 inset, 0 0 20px 2px #00d7c3;
  border: 3px solid #00d7c3;
  */
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
  transform: scale(1.05, 1.05);
  transition: .3s ease-in-out;
}

/*
.menu-button-2 {
     position: absolute;
     margin-top: -70px;
     z-index: -1;
     filter: blur(30px);
     opacity: 0.8;
}
*/

.menu-button span {
	color: transparent;
	background-image: linear-gradient(0deg, #EE82DA 0%, #FEFAFD 100%);
	-webkit-background-clip: text;
	background-clip: text;
	filter: drop-shadow(0 2px 2px hsla(290, 100%, 20%, 1));
}

.menu-button::before {
	content: "";
	display: block;
	/* height: 0.15rem; */
	position: absolute;
	/* top: 0.5rem; */
	left: 50%;
	/* transform: translateX(-50%); */
	width: calc(100% - 7.5rem);
	/* background: #fff; */
	border-radius: 100%;

	/* opacity: 0.7; */
	/* background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%); */
}

.menu-button::after {
	content: "";
	display: block;
	/* height: 0.15rem; */
	position: absolute;
	/* bottom: 0.75rem; */
	left: 50%;
	/* transform: translateX(-50%); */
	width: calc(100% - 7.5rem);
	/* background: #fff; */
	border-radius: 100%;

	/* filter: blur(1px); */
	/* opacity: 0.05; */
	/* background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%); */
}

@keyframes anime {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes neon {
  0% {
    text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
    0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
    0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
  }
  50% {
    text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
    0 0 5px var(--shadow-color-light), 0 0 15px var(--shadow-color-light), 0 0 25px var(--shadow-color-light),
    0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 60px var(--shadow-color), 0 0 80px var(--shadow-color), 0 0 110px var(--shadow-color), 0 0 210px var(--shadow-color);
  }
  100% {
    text-shadow: -1px -1px 1px var(--shadow-color-light), -1px 1px 1px var(--shadow-color-light), 1px -1px 1px var(--shadow-color-light), 1px 1px 1px var(--shadow-color-light),
    0 0 3px var(--shadow-color-light), 0 0 10px var(--shadow-color-light), 0 0 20px var(--shadow-color-light),
    0 0 30px var(--shadow-color), 0 0 40px var(--shadow-color), 0 0 50px var(--shadow-color), 0 0 70px var(--shadow-color), 0 0 100px var(--shadow-color), 0 0 200px var(--shadow-color);
  }
}

/* CSS3 text-shadow effects */
/* https://codepen.io/juanbrujo/pen/DBKxxM */
/* 🌺🙏🌺🙏	Praying Hands	Alt + 128591	1F64F */
/* https://www.webnots.com/alt-code-shortcuts-for-hands-symbols/ */

/*
<button><span>佛教书籍系列 Buddhism eBook Series</span></button>
<button><span>佛教法宝 Buddhism Treasure</span></button>
*/

button {
  /*
	cursor: pointer;
	position: relative;
	padding: 2.5rem 7.5rem;
	border-radius: 3.75rem;
	line-height: 2.5rem;
	font-size: 2rem;
	font-weight: 600;
  */

	cursor: pointer;
	position: relative;
	border-radius: 50px;
	line-height: 100px;
	font-size: 30px;

	border: 1px solid #012880;
	background-image: linear-gradient(-180deg, #FF89D6 0%, #C01F9E 100%);
	box-shadow: 0 1rem 1.25rem 0 rgba(22,75,195,0.50),
							0 -0.25rem 1.5rem rgba(110, 15, 155, 1) inset,
							0 0.75rem 0.5rem rgba(255,255,255, 0.4) inset,
							0 0.25rem 0.5rem 0 rgba(180, 70, 207, 1) inset;
}

button span {
	color: transparent;
	background-image: linear-gradient(0deg, #EE82DA 0%, #FEFAFD 100%);
	-webkit-background-clip: text;
	background-clip: text;
	filter: drop-shadow(0 2px 2px hsla(290, 100%, 20%, 1));
}

button::before {
	content: "";
	display: block;
	height: 0.15rem;
	position: absolute;
	top: 0.5rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 7.5rem);
	background: #fff;
	border-radius: 100%;

	opacity: 0.7;
	background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}

button::after {
	content: "";
	display: block;
	height: 0.15rem;
	position: absolute;
	bottom: 0.75rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 7.5rem);
	background: #fff;
	border-radius: 100%;

	filter: blur(1px);
	opacity: 0.05;
	background-image: linear-gradient(-270deg, rgba(255,255,255,0.00) 0%, #FFFFFF 20%, #FFFFFF 80%, rgba(255,255,255,0.00) 100%);
}

/*
html,
body {
	height: 100%;
	display: flex;
	align-items: top;
	justify-content: center;
	background-color: navajowhite;
}
*/
/* BEGIN TEXT ANIMATION.
** These segment for animating a line of texts from left to right.
    <div class="box">
      <div class="inner">
        <span>🙏南无阿弥陀佛🙏众生是未来佛🙏极乐世界是我家🙏</span>
      </div>
      <div class="inner">
        <span>🙏南无阿弥陀佛🙏众生是未来佛🙏极乐世界是我家🙏</span>
      </div>
    </div>
*/

.box {
	display: flex;
  margin-top: 10px;
  margin-bottom: 10px;
}

.box .inner {
	width: 8000px;
	height: 50px;
	line-height: 50px;
	font-size: 22px;
	font-family: Arial;
  font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
  text-shadow: 1px 4px 4px rgba(255, 104, 104, 0.9);
}

.box .inner:first-child {
	background-color: antiquewhite;
	color: red;
	transform-origin: right;
	transform: perspective(500px) rotateY(-0deg);
}

.box .inner:last-child {
	background-color: antiquewhite;
	color: red;
	transform-origin: left;
	transform: perspective(500px) rotateY(0deg);
}

.box .inner span {
	position: absolute;
	animation: marquee 10s linear infinite;
}

.box .inner:first-child span {
	animation-delay: 5s;
	left: -100%;
}

@keyframes marquee {
	from {
		left: 100%;
	}

	to {
		left: -100%;
	}
}
/* END TEXT ANIMATION */

/*
<div class="box">
<div class="marquee">
  <p>南无阿弥陀佛 众生是未来佛</p>
</div>
</div>
*/

.marquee {
  /*
  box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .15);
  background-color: #ffffff;
  */
  overflow: hidden;
  position: relative;
  height: 50px;
  font-size: 42px;
  color: red;
  text-shadow: 1px 4px 4px rgba(73, 104, 163, 0.6);
  width: 150%;
  /* Full width of its parent */
  white-space: nowrap;
}

.marquee p {
  position: absolute;
  width: 150%;
  height: 100%;
  margin: 0;
  line-height: 50px;
  /* text-align: center; */
  /* Start off the right edge */
  transform: translateX(100%);
  /* Animate to the left */
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
      transform: translateX(100%);
  }

  100% {
      transform: translateX(-100%);
  }
}
