* {
	margin: 0;
	padding: 0;
}

body {
	font-family: sans-serif;
	font-size: 24px;
}

header {
	height: 100vh;
	background-image: url(images/header_back.jpg);
	background-size: cover;
	grid-column: 1 / -1;
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.5);
	display: flex;
	flex-direction: column;
}

.main-grid {
	display: grid;
	grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
}

a {
	text-decoration: none;
	color: white;
}

nav {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
}

.logo {
	height: 100%;
}

.menu ul {
	list-style: none;
	display: flex;
}

.menu ul li {
	padding: 1em 2em;
}

.menu ul li a:hover {
	color: grey;
	transition: 0.5s;
	text-decoration: underline;
}

.banner {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	flex-grow: 1;
}

.banner h1 {
	color: white;
	font-size: 72px;
}

.banner p {
	max-width: 40%;
	color: white;
	text-align: center;
	padding: 50px 0;
	font-size: 20px;
}

.button {
	background: orange;
	padding: 15px 50px;
	border-radius: 7px;
	transition: 0.5s;
	opacity: 0.5;
}

.button:hover {
	background: yellowgreen;
	transition: 0.7s;
	border: 1px solid black;
	opacity: 2;
	transform: scale(1.15);
}

.clothes {
	grid-column: 2 / -2;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 15vh;
	justify-content: space-around;
	padding-top: 150px;
	padding-bottom: 100px;
}

.clothes p {
	text-align: center;
}

.tiles {
	grid-column: 2 / -2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 40px;
	margin-bottom: 100px;
}

.item {
	display: grid;
	grid-template-columns: 1;
	grid-template-rows: 1;
	overflow: hidden;
}

.item img {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.item_overlay {
	background: rgba(0,0,0,0.5);
	grid-column: 1 / -1;
	grid-row: 1 /-1;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

.item:hover .item_img {
	transform: scale(1.15);
	transition: 1s;
}

footer {
	grid-column: 1 / -1;
	background-color: black;
	color: white;
	height: 30vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

footer p{
	padding: 30px 0;
}

.social{
	display: flex;
	justify-content: space-around;
	width: 10vw;
}

p{
	animation-duration: 3s;
	animation-name: slidein;
}

.social a:hover{
    transition: 0.5s;
    color: darkorange; 
}
  