

.first{
	display: inline-block;
	border:5px solid black;
	border-radius:10px; 
	width:200px;
	height:200px; 
}
.second{
	display: inline-block;
	border:5px solid black;
	border-radius:10px; 
	width:200px;
	height:200px; 
}
.third{
	display: inline-block;
	border:5px solid black;
	border-radius:10px; 
	width:200px;
	height:200px; 
}
.third:hover{
	width:100px;
	height:100px;
}
p{
	text-align: center;
	margin-top:40%;
}
*{
	box-sizing: border-box;
}
body{
	font-family: Roboto;
	padding:20px;
	background: #f1f1f1;
}
.header{
	padding: 30px;
	font-size: 40px;
	text-align: center;
	background: white;
}
.row{
	display:table; 
}
.left{
	float:left;
	width: 75%;
}
.right{
	float:left;
	width: 25%;
	padding-left:20px;
}
.card{
	background-color: white;
	padding: 20px;
	margin-top: 20px;
}
.img{
	background-color: #aaa;
	padding: 20px;
	background-size: cover;
	background-position: center;
	height: 200px;
	background-image: url(img1.jpg);
}
.modalDialog{
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background: rgba(0,0,0,0.8);
	display: none;
}
.modalDialog:target{
	display: block; 
}
.modalDialog > div{
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #f3f3f3;
	}



















