body {
  margin-top: 50px;
}

.element {
  background-color: #efefef;
  width: 70%;
  height: 800px;
  border-radius: 10px;
  margin: 40px auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  position: relative;
  top: 80px;
}

.element.visible {
  opacity: 1;
  top: 0px;
}
/*# sourceMappingURL=styles.css.map */