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

html,
body {
	height: 100%;
	width: 100%;
	font-family: "Ralewat", sans-serif;
	background-color: black;
}
header {
	height: 100vh;
	position: relative;
}
.cover {
	height: 100%;
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	object-fit: cover;
}

.cover-date {
	position: absolute;
	left: 10%;
	bottom: 10%;
	color: #fff;
	opacity: 0.8;
}

nav {
	z-index: 2;
	width: 40%;
	height: 20%;
	background-color: #fff;
	color: #916356;
	/* overflow: hidden; */
	position: absolute;
}
.nav-closed {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
	height: 180px;
	position: absolute;
	z-index: 5;
}
.nav-closed ul {
	display: flex;
	width: 50%;
	justify-content: space-around;
	list-style: none;
}

.nav-button {
	cursor: pointer;
}
.nav-open {
	position: absolute;
	width: 100%;
	height: 80%;
	top: 20%;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;

	opacity: 0;
	pointer-events: none;
}

.clothing {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.clothing h2 {
	font-size: 50px;
}

.clothing ul {
	list-style: none;
}
.clothing ul li {
	padding-bottom: 10px;
}
.clothing ul li a {
	text-decoration: none;
	color: #916356;
}
.nav-images {
	display: flex;
	justify-content: space-around;
	width: 100%;
}
.nav-images img {
	height: 250px;
}
