.red-button {
background-color:#e22122;
color:#fff;
border-radius:5px;
padding:5px 15px;
border:solid 1px #999;
box-shadow:2px 2px 2px #333;
width:150px;
transition: all 0.2s ease-in-out 0s;
font-weight:bold;
font-size:16px;
}

.red-button:hover{
background-color:#002f8d;
color:#fff;
}
