@media screen and (min-width: 950px) {
    .split {
        height: 100%;
        width: 50%;
        position: fixed;
        z-index: 1;
        top: 0;
        overflow-x: hidden;
        padding-top: 20px;
    }
      
    .left {
        left: 0;
        background-color: white;
    }
      
    .right {
        right: 0;
        background-color: gray;
        -moz-transition: all .2s ease-in;
        -o-transition: all .2s ease-in;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }
      
    .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
      
    .logo {
        width: 50vh;
    }

    .logo2 {
        width: 40vh;
    }
    
    .left p{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 1.6rem;
        color: gray;
    }
    
    .right p{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 2.5rem;
        color: white;
    }

    p {
        line-height: 1em;
    }
}

@media only screen and (max-width: 950px) {
    .split {
        height: 40%;
        width: 100%;
        position: fixed;
        z-index: 1;
        bottom: 0;
        overflow-x: hidden;
        padding-top: 60px;
    }
      
    .left {
        left: 0;
        top: 0;
        background-color: white;
    }
      
    .right {
        left: 0;
        background-color: gray;
    }
      
    .centered {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
      
    .logo {
        width: 35vh;
    }

    .logo2 {
        height: 20vh;
    }
    
    .left p{
        right: 0;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 0.8em;
        color: gray;
    }
    
    .right p{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        font-size: 1.5em;
        color: white;
    }

    p {
        line-height: 1.2em;
    }
}