.cardbody {
	margin: 50px;
	font-family: 'Raleway', sans-serif;
}

body {
	background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
	font-family: 'Raleway', sans-serif;
}

a, u {
    text-decoration: none;
}

a {
    text-decoration: none !important;
}

textarea {
  resize: none !important;
  border: 3px solid orange;
}

.card {
  /* Add shadows to create the "card" effect */
	background-image: linear-gradient(-120deg, #f6d365 0%, #fda085 100%);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
  transition: 0.3s;
  border: 2px solid black;
  border-radius: 8px;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.6);
}

.myButton {
	background-color:#44c767;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#000;
	font-family:Arial;
	font-size:15px;
	padding:5px 7px;
	text-decoration:none;
}
.myButton:hover {
	background-color:#359600;
}
.myButton:active {
	position:relative;
	top:1px;
}


