body {
  justify-content: start;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
}
body::-webkit-scrollbar {
  width: 0;
}
body .about {
  position: absolute;
  width: 320px;
  height: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  animation: up 40s 1 linear;
  top: 0;
}
body .about .paragraph {
  font-size: 1.3rem;
}
body .about .heading h1 {
  font-size: 4rem;
}
body .about .heading h2 {
  font-size: 2rem;
}
body .about img {
  width: 100px;
  border-radius: 20px;
  box-shadow: #000000 0px 0px 1px;
}

@keyframes up {
  0% {
    top: 100%;
  }
  50% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}/*# sourceMappingURL=about.css.map */