*{
	box-sizing: border-box;
}
.header{
 text-align: center;
 font-size: 40px;
 background: white;
 padding: 30px;
 background-color: blue;
}
body {
	font-family: Roboto;
	padding:20px;
	background: #f1f1f1f1;
	background-image: url(er.png);

}
.leftcolumn{
width: 75%;
}
.rightcolumn{
width: 25%;
padding-left: 20px;
}

.row{
	display: flex;
}
.cart{
	background-color: red;
	padding: 20px;
	margin-top: 20px;
}
.footer{
	background-image: url(images.jpg);
	background-size: cover;
	padding: 50px;
	text-align: center;
	font-size: 35PX;
}
.Modal{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:rgba(0,0,0,0.8);
display: none;
}
.Modal:target{
	display: block;
}
.Modal > div{
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #f3f3f3; 
}
.image{
	background-image: url(1.png);
}
.close{
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 1px 1px 3px #000;
}
.close:hover{
	background-color: black;
}
