/* CSS Document */
*{
	/*margin:0px;
	padding:0px;*/
	box-sizing:border-box;
	font-family:Ubuntu Sans;
}
body{
	background-color:#99CCFF;
}
.container{
	width:85%;
	margin:100px 80px;
	display:flex;
	justify-content:space-between;

}
.card{
	width:455px;
	margin:0px 10px;
	background-color:#fff;
	overflow:hidden;
	box-shadow:0px 4px 8px rgba(0,0,0,0.1);
	border-radius:8px;
	cursor:pointer;
	transition:0.4s ease;
}

.card hover{
	transform:translateY(-10px);
}
.card img{
	width:200px;
	height:auto;
	border-top-left-radius:8px;
	border-top-right-radius:8px;

}
.card .content{
	padding:20px;
}
.card .content h2{
	font-size:28px;
	color:#234eba;
	margin-bottom:10px;
}
.card .content p{

	color:#333;
	line-height:1.4;
	font-size:15px;
}

/*canvas {
  height: 350px;
  width: 650px;
   margin-top:auto;
}
#canvas-container {
   width: 100%;
   text-align:center;
   margin-top:70px;
}*/