* { 
	box-sizing: border-box;
} 
body { 	
	font-family: Roboto; 
  	padding: 20px; 
  	background-color: #d6d6d6; 
 }
 .header { 
 	padding: 30px; 
 	font-size: 40px; 	
 	text-align: center; 
 	background-color: white;
}
.row {
	display: table;
}
.leftcolumn {
	float: left;
	width: 75%;
}
.rightcolumn {
	float: left;
	width: 25%;
	padding-left:20px;
}
.card {
	background-color: white;
	padding: 20px;
	margin-top: 20px;
}
.img {
	height: 200px;
	padding: 20px;
	background-size: cover;
	background-position: center;
	background-image: url(img1.jpg);
}
.img2 {
	height: 100px;
	width:  80px;
	padding: 20px;
	background-size: cover;
	background-position: center;
	background-image: url(caat.png);
}
.img3 {
	height: 200px;
	padding: 20px;
	background-size: cover;
	background-position: center;
	background-image: url(Butterfly.png);
}
.rightcolumn .img2{
	background-image: none;
}
i {
	font-size: 30px !important;
	padding-right: 12px;
}
a {
	text-decoration: none;
	color: black;
}
.footer {
	padding: 20px;
	text-align: center ;
	background-color:#bababa ;
	margin-top: 20px ;
}
.moadDialog {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	display: none;
}
 .modalDialog:target { 
 display: block; 
} 
.modalDialog > div { 
	width: 600px; 
	position:  relative; 
	margin: 10% auto; 
	padding: 5px 20px 13px 20px; 
	border-radius: 10px;
	background: #f3f3f3;
}