body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    font-weight: 600;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20%;
}

.active {
    color: #65dd64;
}
.disable {
    color: #d22632;
}

.content h3 {
    font-size: 40px;
    margin: 0;
    padding: 0;
}


#connect     {
    font-family: 'Montserrat';
    font-weight: 600;
    flex: 1 1 auto;
    margin: 10px;
    padding: 30px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    /* text-shadow: 0px 0px 10px rgba(0,0,0,0.2);*/
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
}

/* Demo Stuff End -> */

/* <- Magic Stuff Start */

#connect:hover {
    cursor: pointer;
    background-position: right center; /* change the direction of the change here */
}

#connect {
    border: 0;
    background-color: #00a0e3;

}

#connect:hover {
    background-position: right center; /* change the direction of the change here */
}

