*,
*: before,
*: after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 100%;
}

a:link {color: black; text-decoration: none;}
a:visited {color: black; text-decoration: none;}
a:hover {color: black; text-decoration: none;}
a:active {color: black; text-decoration: none;}

ul { list-style: none; }

img { size: 100%; }

body {
	width: 100%;
	height: auto;
	text-align: center;
	font-family: 'Poppins', sans-serif;
	overflow: auto;
}

.first,
.home,
.secret,
.contact, 
.categories,
.main {
	position: fixed;
}

.first {
	z-index: 77;
	top: 0;
	left: 0;
	width: 100%;
	height: 35px;
	background-color: white;
}

.home { 
	top: 6px;
	left: 2%; 
}

.contact { 
	top: 6px;
	right: 2%; 
}

.secret {
	z-index: 99;
	top: 6px;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.categories {
	z-index: 88;
	top: 35px;
	left: 0;
	width: 100%;
	padding: 5px;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	background-color: white;
}

.menu {
	margin: 5px;
}

.menu:hover +.secret {
	display: block;
}

.main {
	z-index: 66;
	top: 72px;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: scroll;
}

.main img {
	z-index: 55;
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid black;
}

.salt {
	position: absolute;
	left: 0;
	width: 50%;
	height: 100%;
}

.sugar {
	position: absolute;
	left: 50%;
	width: 50%;
	height: 100%;
	border-left: 1px dotted black;
}

@media only screen and (min-width: 640px) {
	
}





