html {
	background: white;
}

body {
	margin: 0 auto;
	max-width: 500px;
}

.main {
	margin: 10px 0 10px 0;
	max-height: 90%;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Ubuntu,sans-serif;
}

.item-art {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.item-art img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 20rem;
	border-radius: 6px;
	box-shadow: 0 3px 20px 0 rgb(50 50 93 / 30%), 0 1px 10px 0 rgb(0 0 0 / 21%);
}

.item-art {
	padding-bottom: 20px;
}

.item-price {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: rgba(26,26,26,.6);
	font-weight: 500;
	font-size: 16px;
}

.item-price p {
	margin-bottom: 0;
}

.item-title {
	display: block;
	margin-left: auto;
	margin-right: auto;
	color: rgba(26,26,26,.9);
	font-size: 28px;
	font-weight: 600;
	text-align: center;
}

.item-title p {
	margin: 2px 0px 2px 0px;
}

.item-grade {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: rgba(26,26,26,.6);
	font-weight: 500;
	font-size: 16px;
}

.item-grade p {
	margin: 0;
}

.item-desc {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 380px;
	color: rgba(26,26,26,.6);
	font-size: 14px;
	font-weight: 500;
}

.item-buy {
	padding-top: 25px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.item-buy a {
	text-decoration: none;
}

.item-buy a button {
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: 44px;
	width: 380px;
	background: rgb(0, 116, 212);
	border: none;
	border-radius: 6px;
	transition: box-shadow .08s ease-in
}

.item-buy a button:hover {
	box-shadow: inset 0 0 0 1px rgb(50 50 93 / 10%), 0 6px 15px 0 rgb(50 50 93 / 20%), 0 2px 2px 0 rgb(0 0 0 / 10%);
	cursor: pointer;
}

.item-buy a button, .item-buy a button:visited {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
}

.preview-icons {
	margin-left: auto;
	margin-right: auto;
	margin-top: 25px;
	display: flex;
	width: 175px;
	justify-content: space-around;
	flex-direction: row;
	flex-wrap: wrap;
	height: auto;
	color: rgba(26,26,26,.5);
}

.preview-icons i {
	color: rgba(26,26,26,.5);
}

.preview-icons i:hover {
	color: rgba(26,26,26,.6);
	cursor: pointer;
}

@media only screen and (max-width: 444px) {
	
	.item-desc {
		width: 300px;
	}
	
	.item-buy a button {
		width: 300px;
	}
}

@media only screen and (max-height: 894px) {
	.main {
		margin-top: 20px;
	}
}