/* button testing  */

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;

    width: 10%;
    margin-left: 70%;

}


/* hover change colors  */

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
    width: 40%;
    margin-left: 20%;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}

/* shodaow on hover  */
.button2:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);

}

