body{
    color: white;
    font-size: 24px;/* 1em */
}

.main-grid {
	display: grid;
	grid-template-columns: 1fr repeat(2, minmax(auto, 25em)) 1fr;
}

header{
    height: 100vh;
    background-image: url("OnlineShopImages/header_back.jpg");
    background-size: cover;
    grid-column: 1 / -1;
}

nav{
    display: flex;
    height: 5em;
    justify-content: space-between;
    padding:2em 1em; 
}

.menu ul {
	display: flex;
	list-style: none;
}

.menu ul li {
	padding: 1em 2em;
}

.menu ul li a {
	color: white;
	text-decoration: none;
}

.menu ul li a:hover {
	color: orange;
	transition: 0.9s;
}

.banner{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.banner h1{
    font-size: 3em;
}
.banner p {
    width: 100vh;
}

.banner a{
    color: white;
    background-color: yellow;
    font-size: 1em;
    line-height: 2em;
}

.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;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item-overlay {
    background: rgba(0, 0, 0, 0.5);
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    z-index: 2;
    display: grid;
    justify-items: center;
    align-items: center;
    color: white;
  }
  .item:hover .item-img {
	transform: /*rotate(5deg)*/ scale(1.15);
	transition: 0.5s;
}
.clothes {
    color: black;
	grid-column: 2 / -2;
	height: 15vh;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding-top: 150px;
	padding-bottom: 100px;
}

.clothes p {
	padding: 20px;
	text-align: center;
}

footer{
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}