/*
This is your custom Style Sheet. It's the last css resource loaded so you can
easily overwrite css selectors from other style sheets.
*/
body {
background-color: #e2d6e2;
background-image: linear-gradient(270deg, #e2d6e2 0%, #b2c5c7 24%, #ffffff 49%, #ffffff 75%, #ffffff 100%);

}


.css-book-btn { 
       	background-color: #5578eb;
        border-color: #5578eb;
        color: #ffffff;
        border-radius: 3px;
        -webkit-border-radius: 3;
        -moz-border-radius: 3;
        border-width: 1px;
        font-family: inherit;
        font-size: 20px;
        line-height: 20px;
        padding: 10px 20px;
        text-decoration: none;

        -webkit-box-shadow: 0px 4px 16px 0px rgba(85, 120, 235, 0.15);
        box-shadow: 0px 4px 16px 0px rgba(85, 120, 235, 0.15);

        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
      }

.css-book-btn:hover { 
       	color: #fff;
        background-color: #335de7;
        border-color: #2754e6;
        text-decoration: none;

        -webkit-box-shadow: 0px 9px 16px 0px rgba(85, 120, 235, 0.25) !important;
        box-shadow: 0px 9px 16px 0px rgba(85, 120, 235, 0.25) !important;

        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
      }