body {
    padding: 0;
    margin: 0;
    background-color: white;
}

.textContainer {
    position: relative;
    overflow: hidden;
    width: 600px;
    height: 200px;
 
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

#dis {
    left: 45%;
}

#con {
    left: 55%;
}

#nect {
    left: 45%;
}

.textClip {
    border-style: solid;
    border-width: 0px 0px 3px 0px;
    border-color: black;

    overflow: hidden;
    position: absolute;
    box-sizing: border-box;

    width: 700px;
    height: 100px;
    
    transform: translateX(-50px);
    
    background-color: white;
    color: white;
    -webkit-text-stroke-color: black;

    font-size: 175px;
    -webkit-text-stroke-width: 5px;
    text-align: center;
}

.textFull {
    z-index: -1;
    position: absolute;

    width: 600px;
    height: 200px;

    color: white;

    font-size: 175px;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: gray;
    text-align: center;   
}

@keyframes shiftText {
    0% {left: 10px;}
    50% {left: -10px;}    
    100% {left: 10px;}    
}

@keyframes shiftTextInverse {
    0% {left: -10px;}
    50% {left: 10px;}    
    100% {left: -10px;}    
}