@charset "utf-8";
/* CSS Document */

.wrapper{
	width: 95%;
	max-width: 1200px;
	min-width: 350px;
	margin: 0 auto;
	color: white;
	position: relative;
	
}
.content{
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
	padding: 10px 0;
	
}
.box {
	background-color: rgba(255,255,255,0.1);
	padding: 20px;
	border-radius: 5px;
	border: thin solid blue;

}
h1{font-family: 'Merienda', cursive;
	color: orange;
	text-shadow: 5px 5px 5px black;
}
h3{font-family: 'Merienda', cursive;
font-size: 22px;
color: orange;
	text-shadow: 5px 5px 5px black;
}
p {
	font-size: 16px;
	margin: 5%;
}

.AR{
	
}

.mirror{
	float: right;
	max-width: 50%;
}
.chest{
	float: left;
	max-width: 60%;
}

.desk{
	width: 90%;
	
}

.polishing img{
	max-height: 200px;
	max-width: 50%;
	padding: 2%;
}


@media screen and (min-width : 550px) and (max-width : 999px){
	
.polishing img{
		max-height: 300px;
		max-width: 48%;
		padding: 10px;
	}
	

	
	
	

}


@media screen and (min-width : 1000px){
	
.content{
	display: grid;
	grid-template-columns: 1fr 1fr;	
	grid-template-rows: auto auto;
	}

	.leather{
		grid-area: 1 / 2 / 2 / 3;
	}	
	
	.AR{
		grid-area: 1 / 1 / 3 / 2;
	}
	
	.polishing img{
		max-height: 300px;
		max-width: 48%;
		padding: 10px;
	}
	
	
	
}
	
	
