/*Centers "button" in the middle of the page*/

.fcc-btn {
  background-color: #1880A7;
  text-decoration: none;
    display:inline-block;
    width:25%;
    padding:5px;
    text-align: center;
    font-weight: bold;
    color:white;
    transition: all 0.5s ease;
    font-size: 12px;
    box-shadow: #ccc;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.8);
    border-radius: 25px;
}

.fcc-btn:hover {
  background-color: #223094;
}





