*
{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
.navbar
{
	background-color:grey;
	display: flex;
	justify-content: center;
}
.navbar a
{
	color: white;
	text-align: right;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
	padding: 14px 20px;
}
.navbar a:hover
{
	background-color: white;
	color: black;
}
.content p
{
	text-align: justify;
	margin: 10px;
	padding: 10px;
}
#toggle
{
	display: none;
}
.togglearea
{
	background-color: gray;
	border-bottom: 2px solid white;
	color: white;
	padding: 12px;
	display: flex;
	justify-content: flex-end;
}
.togglearea label
{
	background-color: white;
	height: 30px;
	width: 50px;
	color: black;
	border-radius: 6px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.togglearea label span
{
	background-color: black;
	height: 10px;
	width: 100%;
	margin: 2px 0px;
}
.togglearea
{
	display: none;
}
@media screen and (max-width: 700px)
{
	.navbar
	{
		flex-direction:column-reverse;

		display: none;
	}
	#toggle:checked + .navbar
	{
		display: flex;
	}
	.togglearea
	{	
		display: flex;
	}
}