#helpTips {
    background: var(--blue);
    position: fixed;
    bottom:8vmin;
    width:400px;
    left:50%;
    margin-left:-200px;
    text-align:center;
    border-radius:15px;
    z-index:9999;
    transition:.5s;
    font-size:16px;
    background: var(--blue);
    color: var(--white);
    border:2px solid var(--white);
}

#helpTips.completed {
    background: var(--white);
    color: var(--black);
}

#helpTips.dismissed {
    background: var(--white);
    color: var(--black);
    bottom:-100px;
}
