html, body {
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0;
}
body{
	min-height: 100% !important;
}
a {
	color: black;
}
.container {
	width: 100%;
	min-height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0,0.2)),url("../assets/images/01-Hello-Cupcake.jpg");
	background-position: center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0px;
	position: relative;
}
.site {
	position: relative;
	top: 0px;
	left: 0px;
	width: 95%;
	background-color: azure;
	box-shadow: 2px 2px 25px white;
	padding-bottom: 20px;
	margin: 50px 10px;
	overflow: hidden;
	border-radius: 5px;
}
.header {
	height: auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.image-holder {
	width: 100px;
	height: 100px;
	overflow: hidden;
	border-radius: 4px;
	margin: 10px;
}
.image-holder img {
	width: 100px;
	transform: scale(1.4);
}
.kakes {
	font-size: 3rem;
	font-family: 'Londrina Outline', cursive;
	transform: rotate(-5deg);
	flex-grow: 2;
	text-align: center
}
.nav-bar {
	position: relative;
	width: 95%;
	height: 30px;
	background: #D7EEE7;
	margin: 0 auto;
	border-radius: 8px;
	padding: 0px;
	box-shadow: 1px 1px 40px;
	top: -12px;
}
.nav-bar ul {
	display: flex;
	justify-content: space-between;
	align-items: space-between;
	margin: 18px;
	padding: 0px;
	padding-top: 5px;
}
li {
	list-style: none;
	margin-left: 1px;
	margin-right: 1px;
	font-size: 1rem;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
}
h1{
	font-family: 'Raleway', sans-serif;
}
.main {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
}
.main img {
	width: 95%;
	border-radius: 5px;
	box-shadow: 1px 1px 40px;
}
.main p {
	margin-top: 20px;
	width: 93%;
	font-family: 'Raleway', sans-serif;
}
.bottom {
	width: 95%;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}
.bottom .left-box,
.bottom .right-box{
	width: 48%;
	background-color: rgba(210,180,140,.9);
	box-shadow: 0px 0px 20px;
	margin-top: 15px;
	font-family: 'Raleway', sans-serif;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.bottom h5,
.bottom p{
	margin: 5px;
}
.bottom h5{
	font-size: 1.1rem
}
.bottom p{
	font-size: .7rem;
}
.nav-bar a{
	color: black;
	text-decoration: none;
	transition: .2s all ease-in;
}
.nav-bar a:hover{
	
	transform: scale(1.1);
	transform: rotate(-3deg),scale(1.3);
	text-decoration: none;
}
.modal {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,.9);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	opacity: 0;
	pointer-events: none;
	transition: all .3s ease-in;
	border-radius: 5px;
}

.inside {
	width: 80%;
	height: 80%;
	display: flex;
	flex-direction: column;
}
.inside h1{
	text-align: center;
	margin-bottom: 3rem;
}
.inside-photos {
	width: 80%;
	height: 80%;
	padding-left: 3%;
}
.menu img {
	width: 90%;
	max-width: 800px;
}
.thumbnail {
	width: 45%;
	padding: 0 0 45% 0; 
	position: relative;
	float: left;
	overflow: hidden;
	margin: .8%;
	/*border: 3px solid black;*/
	border-radius: 5px;
	transition: all .5s ease;
	background: rgba(0,0,0);
}
.thumbnail:hover {
	transform: scale(1.05);
}

#photo-x {
	position: absolute;
	left: 10px;
	top: -30px;
	font-size: 3rem;
	font-family: 'Raleway', sans-serif;
}
#image {
	position: absolute;
	width: 100%;
	height: 100%;
	background: black;
	padding: 0;
}
#image img {
	position: absolute;
	width: 130%;
	height: 100%;
	background: black;
	margin: 0;
	top: 0;
	left: 0;
	transform: scale(1:1);
}
.black-box{
	position: absolute;
	top: 0;
	left: 0;
	width: 98%;
	padding-bottom: 1%;
	background: rgba(0,0,0,.8);
	border: 3px solid white;
	pointer-events: all;
	z-index: 10000;
	display: none;
}
.box-image{
	width: 80%;
	padding-bottom: 80%;
	margin: 2% 10%;
	pointer-events: all;
}
.x {
	font-size: 3rem;
	position: absolute;
	left: 48%;
	font-family: 'Raleway', sans-serif;
}
.flex {
	opacity: 1;
	z-index: 9999;
	pointer-events: all;
}
.hidden-images {
	display: none;
}
#second-ul{
	margin-top: -15px;
}
@media(min-width: 550px) {
	.inside li{
		font-size: 1.6rem
	}
	.site {
		max-width: 600px;
	}
	.image-holder {
	width: 150px;
	height: 150px;
	overflow: hidden;
	border-radius: 4px;
	margin: 10px;
}
.image-holder img {
	width: 150px;
	transform: scale(1.4);
}
.kakes {
	font-size: 4.4rem;
	font-family: 'Londrina Outline', cursive;
	transform: rotate(-5deg);
	flex-grow: 2;
	text-align: center
}

}
@media(min-width: 750px) {
	.hidden-images {
		display: block;
	}
	.inside-photos {
		width: 80%;
		height: 80%;
		padding-left: 9%;
	}
	.thumbnail {
		width: 20%;
		padding-bottom: 20%; 
	}
	.site {
		max-width: 800px;
	}
	.image-holder {
		width: 175px;
		height: 175px;
		margin: 15px;
	}
	.image-holder img {
		width: 175px;
	}
	.kakes {
		font-size: 5.2rem;
		font-family: 'Londrina Outline', cursive;
		transform: rotate(-5deg);
		flex-grow: 2;
		text-align: center
	}
	.main {
		display: flex;
		flex-direction: row;
		justify-content: space-around;
		align-items: space-around;
	}
	.main img {
		width: 40%;
		border-radius: 5px;
		box-shadow: 1px 1px 40px;
	}
	.main p {
		margin-top: 20px;
		width: 40%;
		font-family: 'Raleway', sans-serif;
	}
	.nav-bar {
		height: 45px;
	}
	.nav-bar ul {
		justify-content: space-around;
	}
	li{
		font-size: 1.8rem;
	}
	.menu li {
		font-size: 1.3rem;
	}
	#second-ul{
		margin-top: 15px;
	}
 	.inside {
		width: 80%;
		height: 80%;
		display: flex;
		flex-direction: row;
	}
	.bottom h5{
		font-size: 1.3rem
	}
	.bottom p{
		font-size: .9rem;
	}
}
@media(min-width: 1000px) {
	.site {
		max-width: 1100px;
	}
	.image-holder {
		width: 200px;
		height: 200px;
		margin: 15px 45px;
	}
	.image-holder img {
		width: 200px;
	}
	.kakes {
		font-size: 5.8rem;
	}
	.main img {
		width: 42%;
		border-radius: 5px;
		box-shadow: 1px 1px 40px;
	}
	.main p {
		margin-top: 20px;
		width: 42%;
		font-family: 'Raleway', sans-serif;
		font-size: 1.5rem;
	}
	.menu li {
		font-size: 1.8rem;
	}
}