*{
	padding:0;
	margin:0;
	box-sizing: border-box;
	font-family: sans-serif;
	
}

.myTitle{
	width: 90%;
	border-radius: .5em;
	padding: 10px;
	display: flex;
	justify-content: center;
}

.item1{
	font-size:15px;
	margin-top : 1rem;
	padding: 10px;
	background-color: rgba(254,161,22,.9);
	display: inline-block;
	vertical-align: top;
}

.item1 span{
	color:black;
	font-size: 3rem;
	position: absolute;
	top: 1rem;
	left: 2rem;
	cursor: pointer;
}

.c_image-container{
	margin-top: 1rem;
	width: 100%;
	height: 90%;
	display: flex;
	align-items: center ;
	justify-content: center;
	flex-wrap: wrap;
	background-color: rgba(254,161,22,.9);
}

.c_image-container img{
	width: 20rem;
	height: 20rem;
	margin: 2rem;
	border-radius: 1rem;
	transition: 0.5s;
}

.c_image-container img:hover{
	transform: scale(1.1);
	rotate: 3deg;
}


.c_view-image{
	position: fixed;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center ;
	justify-content: center;
	background: rgb(0, 0, 0,0.9);
}

.c_view-image img{
	width: 40rem;
	height: 40rem;
	border-radius: 2rem;
}

.c_view-image span{
	color:white;
	background: rgb(0, 0, 0,0.9);
	font-size: 4rem;
	position: absolute;
	top: 0.5rem;
	right:0.5rem;
	cursor: pointer;
}