p{
    text-align: center;
    color: aliceblue;
    margin: 20px 0;
    font-size: 1.5rem;
    letter-spacing: .1em;
      word-break : break-all;
    position: absolute;
    top: 70%;
    left: 11%;
  }
  
  .TextTyping {
    text-align: center;
  }
  
  .TextTyping span {
    display: none;
    font-size: 45px;
    font-family: "游明朝";
  }
  
  .TextTyping::after {
    opacity: 1;
    font-size: 45px;
    content: "|";
    animation: typinganime .8s ease 2s;
  }
  
  @keyframes typinganime{
    from{opacity:0}
    to{opacity:1}
  }

.gazo{
  position: absolute;
    top:25%;
    left:12%;
}

.about{
  position: absolute;
    top: 2%;
    left: 50%;
}

.about-mozi{
  font-family: "游明朝";
  position: absolute;
    top: 35%;
    left: 42%;
}

#splash {
    filter: invert(100%);
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #ffffff;
    text-align: center;
    color: #000000;
    top: 0;
}

#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#splash_logo img {
    width: 300px;
    background-color: #ffffff;
    outline: 5px solid #000000;
    border-radius: 10%;

    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
      opacity: 0;
      transform: translateY(100px);
  }

  to {
      opacity: 1;
      transform: translateY(0);
  }
}