@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Neonderthaw&display=swap");

body {
  font-family: 'Noto Serif TC', serif;
  background: #2f2f2f;
  color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

p {
  font-size: 16px;
  line-height: 2;
}

h1, h2, h3, h4, h5, h6, p, .link-item, strong, a {
  transform: scaleX(0.9);
  letter-spacing: .5rem;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    text-decoration: underline;
    text-decoration: underline orange 2px;
    color: #fff;
}

.hero {
  color: #fff;
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow-y: hidden;
}

@media (max-width: 992px) {
  .hero {
    height: calc(100vh - 50px);
  }
}

main {
    width: 100%;
    /* overflow: hidden; */
    padding: 0;
}

.hero{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero .hero_fade::after{
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
}

.hero .hero_fade img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.hero .txt-content {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero .txt-content h1 {
  font-size: 2rem;
  letter-spacing: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 1);
}

.hero .txt-content h1 small {
  font-size: 2rem;
}

@media (max-width: 992px) {
  .hero .txt-content h1 {
    letter-spacing: .5rem;
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .hero .txt-content h1 small {
    font-size: 1.2rem;
    line-height: 3rem;
  }
}

.hero .txt-content span {
  margin: 20px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  padding: 5px 10px;
  border: 1px solid #aaa;
  background: #ffffff22;
  backdrop-filter: blur(5px);
}