Added pages
diff --git a/mCordPortal/src/sass/main.scss b/mCordPortal/src/sass/main.scss
index 77b5715..9926021 100644
--- a/mCordPortal/src/sass/main.scss
+++ b/mCordPortal/src/sass/main.scss
@@ -4,6 +4,7 @@
 @import './bootstrap_overrides.scss';
 @import './loader.scss';
 @import './home.scss';
+@import './animation.scss';
 
 /* Global styles
 -------------------------------------------------- */
@@ -207,41 +208,4 @@
     animation-delay: 0.1s;
   }
 
-  /* animations
-  -------------------------------------------------- */
-
-  @keyframes slideOutRight {
-    from {
-      transform: translate3d(0, 0, 0);
-      opacity: 1;
-    }
-
-    to {
-      opacity: 0;
-      transform: translate3d(100%, 0, 0);
-    }
-  }
-
-  @keyframes slideInRight {
-    from {
-      transform: translate3d(100%, 0, 0);
-      opacity: 0;
-    }
-
-    to {
-      transform: translate3d(0, 0, 0);
-      opacity: 1;
-    }
-  }
-
-@keyframes fadein {
-  from {
-    opacity: 0;
-    transform: scale3d(.3, .3, .3);
-  }
-  50% {
-    transform: scale3d(1, 1, 1);
-  }
-  to   { opacity: 1; }
-}