body {
    background-color: rgb(16, 16, 16);
    margin: 2.5rem;
}

h1 {
    color: #eace2e;
    font-size: 0.8rem;
    font-family: sans-serif;
    margin-top: 5px;
    margin-bottom: 5px;
}

h2 {
    color: #eace2e;
    font-size: 0.7rem;
    font-family: sans-serif;
    margin-top: 15px;
    margin-bottom: 5px;
}

p {
    color: white;
    font-size: 0.7rem;
    font-family: serif;
    margin: 0;
    text-indent: 12px;
}


.sport {
    height: 110px;
}

.logo {
    position: absolute;
    right: 2rem;
    top: 2rem;
    height: 110px;
}

.copy {
    display: none;
    position: relative;
    width: 325px;
}


.logo:hover {
    scale: 104%;
}

.motion:hover .copy {
    display: block; 
    margin-bottom: 12px;
    margin-left: 0;
}

.down {
    margin-top: 145px;
}


/*animation*/

.motion {
 height: 100%;	
 overflow: hidden;
 position: relative;


 animation: motion 6s linear infinite alternate;
    
  &:hover {
    animation-play-state: paused;
  }  
}

/* Move it (define the animation) */

@keyframes motion {
 0%   { 
 transform: translateX(82%); 		
 }
 100% { 
 transform: translateX(0%); 
 }
}


@media (max-width: 550px) {
    
    .motion {
         height: 100%;	
         overflow: hidden;
         position: relative;

         animation: motion 0s linear infinite alternate;

    }
    
    .sport {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-bottom: 0.7rem;
    }
    
    body {
        margin-top: 10rem;
    }
    
    .logo {
        position: absolute;
        right: 2rem;
        top: 2rem;
        height: 80px;
    }
    
    .logo:hover {
        scale: 100%;
    }
    
    .copy {
        display: block;
        position: relative;
        width: 100%;
        margin-right: 2rem;
        margin-bottom: 5rem;
    }
    
    .motion:hover .copy {
        margin-bottom: 5rem;
        margin-left: 0;
    }
    
    h1 {
      font-size: 1.4rem;  
    }
    
    h2, p {
        font-size: 0.9rem;  
    }
   
}