body{
	display: flex;
	justify-content: center;         /* horizontal mittig */
	align-items: center; 
}

.detail {
	border-radius: 15px;
    overflow: hidden;
    text-align: left;
    background: #242526;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	width: 90vw;
	max-width: 1000px;
}

.detail-content{
	width: 100%;
	margin: 4%;
}

.detail img {
    width: 100%;
    display: block;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.back { 
	display: inline-block; 
	margin-top: 20px; 
	text-decoration: none; 
	color: white;
}

