* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

.reveal {
  animation: rise 650ms ease both;
}

.reveal:nth-child(2) {
  animation-delay: 80ms;
}

.reveal:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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