.Link2Button {
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding:  10px 20px 10px 20px;
    color: white !important;
    text-decoration: none !important;
    background-color: #06447B;
    border-radius: 20px;
   box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.0);
    transition: background-color .25s, box-shadow .25s;
 }
.Link2Button:hover {
    cursor: pointer;
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.7);
    background-color: #217ccc;
}
