body {

                background: linear-gradient(132deg, #ec5218, #1665c1);
                background-size: 400% 400%;
                animation: BackgroundGradient 30s ease infinite;
            }
            
            .actions{
            	padding: 0;
            	display: block;
            	margin: auto;
            	width: 50%;
            	height: 100%;
            }
            @keyframes BackgroundGradient {
                0% {background-position: 0% 50%;}
                50% {background-position: 100% 50%;}
                100% {background-position: 0% 50%;}
            }
            h3{
                text-align: center;
                color: rgba(255, 255, 255, 0.75);
            }
            .img1{
            	filter:drop-shadow(5px 5px 10px #444);
            	display: block;
            	margin: auto;
            	width: 100px;
            	height: 100px;
            	border-radius: 100px;

            }

            .button {
        
         color: rgba(255, 255, 255, 0.75);;
		text-align: center;
		width: 100%;
		background-color: transparent;
		border: solid 3px !important;
		border-color: rgba(255, 255, 255, 0.75) !important;;
		border-radius: 5em;
		display: inline-block;
		line-height: 2.75em;
		margin: 15px;
		text-decoration: none;
		text-transform: uppercase;
		cursor: pointer;
		
	}
           .good:hover {
               background-color: rgba(255, 255, 255, 0.75) !important;
               color: #ec5218;

            }
