#about {
  width: 100%;
  height: 100%;
  background-image: url(/res/about/b.jpg);
  mask-image: linear-gradient(0deg, #000f 0%, #000f 85%, #0000 100%);
  -webkit-mask-image: linear-gradient(0deg, #000f 0%, #000f 85%, #0000 100%);
}
#about > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  display: flex;
  background-image: url(/res/about/c.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#about > div > hr {
  border: none;
  border-left: 0.3vw solid #000;
  margin: 3vw;
}
#about > div > img {
  height: 20vw;
}

#about > p {
  color: #455;
  font-size: 2vh;
  position: absolute;
  bottom: 0;
  margin: 3vw 0;
  width: 100%;
  text-align: center;
  white-space: pre-wrap;
}


@media screen and (orientation: portrait) {
#about > div {
  display: block;
}
#about > div > hr {
  border: none;
  border-left: none;
  border-top: 0.2vh solid #445;
  margin: 2vh;
}
#about > div > img {
  height: unset;
  width: 90vw;
}

#about > p {
  font-size: 1.2vh;
  margin: 4vh 0;
}
}