@charset "UTF-8";
/* CSS Document */

*{margin:0px;
	padding:0px;
	text-size:0px;}

html,body {width:100vw;
    	   height: 100vh;
    	   margin: 0;}

body {background-color:lightcyan;}

h1{font-family: 'Montserrat', sans-serif;
    font-size: 35px;
	text-align:center;
	color:slategray;
	padding-bottom: 15px;
	padding-top: 10px;
	top: 170px;
	position: absolute;
	left: 50%;
	transform: translate(-50%,-50%);}

h2{margin-bottom:0px;
	color:lightslategrey;
	font-size: 18px;
	text-align:center;
	padding-bottom: 15px;}

h3 {font-family: 'Permanent Marker', cursive;
			color:white;}

h4 {font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
	text-align:center;
	color:darkcyan;
	padding-bottom: 8px;
	padding-top: 8px;}

h5 {font-family: 'Montserrat', sans-serif; 
    color: gray;
    font-size: 15px;
	text-align:center;
	padding-bottom: 8px;}

button{outline: 0;
  padding: 5px;
  color: white;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  width: 40%;
  font-size: 15px;
	border-radius: 5px;
	margin-left: 30%;}

.dropbtn{background-color: transparent;
		color: white;
		padding: 16px;
		width: 100px;
		font-size: 16px;
		border: none;
		margin-bottom: 20px;
		text-align: center;}

.dropdown{position: fixed;
		display: inline-block;
		width: 100px;
		right: 10px;
		height:100px;
		top: 22px;
		text-align: center;
		z-index: 3;}

.dropdown-content{display: none;
				position: absolute;
				width: 100px;
				top: 80px;
				z-index: 4;
				text-align: center;
				background-color: black;}

.dropdown-content a{color:cornsilk;
					padding: 10px 16px;
					text-decoration:none; 
					display: block;
					border-radius: 10px;
					font-family: 'Montserrat', sans-serif;}

.header {text-align: center;
  padding: 32px;}

.box {display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: absolute;
    top: 200px;
    width: 100%;
    left: 50%;
    transform: translate(-50%);
	max-width: 80%;}

.item {border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 250px;
    height: 480px;
	margin-top: 20px;
	margin-bottom: 10px;
	margin-left: 5px;
	margin-right: 5px;}

.text-box {position: relative;
    height: 300px;
    padding-left: 12px;}

	
.store-pic {width: 250px;
    height: 300px;
	}

#header{background-color: white;
		width: 100%;
		position: fixed;
		z-index: 1;
		height: 100px;}

#title{position: absolute;
		left:50%;
		top:20px;
		transform: translate(-50%);
		font-size: 40px;
		color:black;
		z-index: 1;
		font-family: 'EB Garamond', serif;}

#menu{width: 30px;
	height: auto;
	text-align: center;
	position: absolute;
	right: 34px;}

#logo{position: absolute;
			width: 200px;
			top:-50px;
			left:-20px;
			height: auto;
			z-index: 1;}

@media only screen and (max-width: 600px) {
	h1 {width: 100%;}
	#logo{left:-33px;}}

.item:hover{box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);}

.dropdown-content a:hover{color:gray;}

.dropdown:hover .dropdown-content {display: block;}