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

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

h2 {
    color: #ed2390;
    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;
}

.column {
    float: left;
    width: 40%;
}

.column2 {
    float: left;
}


.space {
    height: 175px;
    transition: transform 1.5s ease;
}

.spacewide {
    height: 110px;
    transition: transform 1.5s ease;
}

.spaceawk {
    height: 150px;
    transition: transform 1.5s ease;
}


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

.copy {
    display: none;
    left: 10px;
    width: 325px;
}

.motion {
    position: relative;
    margin-bottom: 20px;
    /*background-color: red;*/
}

.logo:hover {
    scale: 104%;
}


.motion:hover .copy {
    display: inline-block;
    vertical-align: top;
    margin-left: 8px;
        
}

.motion:hover .space {
        transform: rotate(360deg);
}

.motion:hover .spacewide {
        transform: rotate(360deg);
}

.motion:hover .spaceawk {
        transform: rotate(360deg);
}

.down {
    margin-top: 145px;
    margin-left: 100px;
    flex-direction: column;
    
}


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

         animation: motion 0s linear infinite alternate;

    }
    
    .down {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        flex-direction: column;
    }
    
    .space {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-bottom: 0.7rem;
    }
    
    .spacewide {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-bottom: 0.7rem;
    }
    
    .spaceawk {
        width: 100%;
        height: auto;
        padding-left: 0;
        padding-bottom: 0.7rem;
    }
    
    .column {
        float: none;
        width: 100%;
    }

    .column2 {
        float: none;
        width: 100%;
    }
    
    body {
        margin-top: 10rem;
    }
    
    .logo {
        position: absolute;
        right: 2rem;
        top: 2rem;
        height: 80px;
    }
    
    .logo:hover {
        scale: 100%;
    }
    
    .copy {
        display: block;
        position: relative;
        width: fit-content;
        margin-right: 2rem;
        margin-bottom: 5rem;
    }
    
    .motion:hover .copy {
        margin-bottom: 5rem;
        margin-left: 0;
    }
    
    .motion:hover .space {
        transform: rotate(0deg);
    }
    
    .motion:hover .spacewide {
        transform: rotate(0deg);
    }
    
    .motion:hover .spaceawk {
        transform: rotate(0deg);
    }
    
    h1 {
      font-size: 1.4rem;  
    }
    
    h2, p {
        font-size: 0.9rem;  
    }
   
}