body { 
  color: #fff;
  background-color: #0e0e0f;
  font-family: Barlow, Arial, sans-serif;
  overflow: hidden;
  height: 100vh;
}



@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(0.5, 0.5, 1);
  }
}

a {
  text-decoration: none;
  color: #e5ca56;
  outline: none;
}

a:hover,
a:focus {
  color: #fff;
  outline: none;
}

.frame__title {
  font-size: 1rem;
  margin: 0 0 1rem;
  font-weight: normal;
  line-height: 1;
}



.content {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: calc(100vh - 13rem);
  position: relative;
  justify-content: center;
  align-items: center;
}

.content__title {
  position: relative;
  color: #fff;
  font-size: 7vw;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  perspective: 1000px;
}

.content__title span {
  display: inline-block;
  white-space: pre;
  transform-origin: 50% -50%;
}

.content__subtitle {
  position: relative;
  margin: 0;
  color: #fff;
  font-family: "微軟正黑體";
  font-size: 1.5vw;
}

.landscape {
  position: absolute;
  top: 0;
  left: 0;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
}

.frame {
  position: absolute;
  text-align: left;
  z-index: 10000;
  top: 0;
  left: 0;
  display: grid;
  align-content: space-between;
  width: 100%;
  max-width: none;
  height: 100vh;
  padding: 2rem;
  pointer-events: none;
  
}
.frame__title-wrap {
  grid-area: title;
  justify-self: center;
  display: flex;
}





.content {
  height: 100vh;
  padding: 0 0 10rem 0;
  justify-content: flex-end;
}
