* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	font-family: 'PP Neue Montreal';
}

.wrapper {
	width: 100%;
	height: 100%;
	background-color: #000;
	transition: 0.5s background-color;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a,
p {
	text-decoration: none;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	transition: 0.5s color;
}

h1 {
	font-size: clamp(30px, 5vw, 50px);
	font-weight: 500;
	margin-bottom: 1em;
	transition: 0.5s color;
}

nav {
	position: fixed;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2.5em;
	z-index: 2;
	/* top: 0; */
}

.container {
	width: 100%;
	height: 100%;
	padding: 5em 2.5em;
}

.gallery {
	position: relative;
	width: 100%;
	display: flex;
	z-index: 0;
}

.minimap {
	position: sticky;
	top: 0;
	flex-basis: 25%;
	width: 100%;
	height: 100vh;
	padding-top: 300px;
	overflow: hidden;
	background-color: #000;
	transition: 0.5s background-color;
}

.active-img-indicator {
	position: absolute;
	top: 300px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 143.2px;
	border: 1.5px solid #fff;
	border-radius: 4px;
	mix-blend-mode: difference;
	z-index: 2;
}

.preview {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 716px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.item-preview {
	position: relative;
	width: 100%;
	height: 143.2px;
	padding: 10px;
	overflow: hidden;
}

.images {
	position: relative;
	top: 0;
	flex-basis: 75%;
	width: 100%;
}

.item {
	position: relative;
	width: 500px;
	height: 600px;
	overflow: hidden;
	margin: 50px auto;
}
.item-img {
	width: 100%;
	height: 550px;
}

.item-copy {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	text-transform: uppercase;
}

.hero-img {
	margin-bottom: 2em;
}

.wrapper.light-theme,
.wrapper.light-theme .minimap {
	background-color: #fff;
}

.wrapper.light-theme a,
.wrapper.light-theme p,
.wrapper.light-theme h1 {
	color: #000;
}

@media (max-width: 900px) {
	.item {
		width: 400px;
		height: 500px;
	}
}
