.Wrap {
  opacity: 1;
  animation: wrapOpacity 2s;
}

@keyframes wrapOpacity {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
