body {
  animation: fadeEffect 1s;
  background: white;
}
        @keyframes fadeEffect {
            from {opacity: 0;}
            to {opacity: 1;}
        }