body {
    font-family: Play, courier, serif;
    text-shadow: 2px 2px 3px grey;
    font-size: 8vw;
    overflow-x: hidden; /* Hide scrollbars */
	overflow-y: hidden; /* Hide scrollbars */
   }
   #footer {
       font-size: 12px;
       color: aliceblue;
       text-shadow: 1px 1px 2px lightgray;
        text-align: center;
    }
   
   a {
       font-size: 12px;
       color: aliceblue;
       text-shadow: 1px 1px 2px lightgray;
        text-align: center;
    }
   
   .ct-slide-right {
       position: relative;
       margin-top: 30vh;
       animation: my_animation 5s;
       animation-fill-mode: both;
       animation-iteration-count: infinite;
   }
   
   @keyframes my_animation {
       from {
           margin-left: -100vw;
           opacity: 1;
           transform: skew(30deg);
       }
       10% {
           transform: skew(20deg);
       }
       20% {
           transform: skew(10deg);
       }
       31%,40% {
           margin-left: 30vw;
           transform: skew(-30deg);
       }
       45%,59% {
           margin-left: 30vw;
           transform: skew(0deg);
       }
       60% {
           margin-left: 30vw;        
           transform: skew(20deg);
       }
       to {
           margin-left: 200vw;
           opacity: 1;
           transform: skew(20deg);
       }
   }