 .logo{width: 100%;max-width:400px;margin-bottom:20px;}

    body{background: linear-gradient(270deg, #7bdea7, #ffffff);
        background-size: 400% 400%;

        -webkit-animation: AnimationName 30s ease infinite;
        -moz-animation: AnimationName 30s ease infinite;
        animation: AnimationName 30s ease infinite;}

    @-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
    }
    @-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
    }
    @keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
    }

    .btn-success {
        color: #fff;
        background-color: #7bdea7;
        border-color: #8beeb7;
    }

    .btn-success:hover {
        color: #fff;
        background-color: #4bce87;
        border-color: #6beea7;
    }

    .jumbotron{margin-top:30px;
        background-color: #edfaf3;}

    body > .container{ width: 60%}

    .marketing {padding:0% 7% 0% 7%;}

    .footer {
        padding-top: 120px;
        height:30px;
        width:100%;
        text-align: center;
    }

    .marketing > div{margin-top:50px;}

    .marketing a{color:inherit;}