@charset "UTF-8";

/*
------
about
------
*/

#about {
  margin: auto;
  max-width: 548px;
  line-height: 40px;
  height: calc(100vh - 350px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#about p {
  display: block;
  height: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width:599px) {
  #about {
    height: auto;
    margin-bottom: 100px;
  }
  #about p {
    height: 400px;
    position: inherit;
    line-height: 2.4rem;
  }
}

