body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: black;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-y: hidden;
}

a {
  text-decoration: none;
}

hr {
  border-width: 2px;
  width: 50%;
  color: white;
}

.title {
  font-size: 3.5rem;
}

.bg-section1-img {
  width: 100vw;
  height: 100vh;
  background-image: url("../assests/bg-section1-img1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 61px;
}

.bg-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../assests/mask.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 61px;
}

.text-intro-wrapper {
  height: 120px;
  display: flex;
  margin-top: 5rem;
}

.typewriter h1 {
  color: #fff;
  overflow: hidden;
  border-right: 0.15em solid orange;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15em;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: white;
  }
}
.bg-black-section {
  background-color: #2a2929;
}

.live2d-pos {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.test {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.outline-box {
  border: 2px solid white;
  pointer-events: none;
}

.fa-icons::before {
  content: "";
}

.fa-colors {
  color: #fff;
}

.card-style {
  width: 100%;
  height: 100%;
  border: none;
}

.card-img-fit {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 25rem;
  border: 6px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/*base code*/
.animated {
  --webkit-animation-duration: 2s;
  animation-duration: 2s;
  --webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  --webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  --webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/*the animation definition*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  --webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#aplayer {
  overflow-y: hidden;
}

.aplayer-body {
  overflow: hidden !important;
}

.aplayer .aplayer-info {
  overflow-y: hidden !important;
}/*# sourceMappingURL=app.css.map */