@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:wght@700&family=Rozha+One&display=swap');
/*font-family: 'Old Standard TT', serif;
font-family: 'Rozha One', serif;*/

* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

body {
	font-family: sans-serif;
}

.menu-btn {
	display: none;
}

header {
	background: #222;
	padding: 5px 20px;
	position: fixed;
	width: 100%;
	z-index: 3;
}

ul {
	list-style: none;
}

a {
	color: white;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;;
}

.menu li{
	font-size: 16pt;
	padding: 15px 5px;
}

.menu li a {
	display: block;
}

.logo a{
	font-size: 50px;
	font-family: 'Old Standard TT';
	text-shadow: 1px 1px white;
	color: black;
	font-weight: 900;
	text-decoration: none;
}
.secondary {
	border-bottom: 1px #444 solid;
}

/* Mobile Menu */

.menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.toggle {
	order: 1;
}

.item.button {
	order: 2;
}

.item {
	width: 100%;
	text-align: center;
	order: 3;
	display: none;
}

.item.active {
	display: block;
}

.toggle {
	cursor: pointer;
	position: relative;
	float: right;
	clear: both;
}

.bars {
	background: #999;
	display: inline-block;
	height: 2px;
	position: relative;
	width: 18px;
}

.bars::before, .bars::after {
	background: #999;
	content:"";
	display: inline-block;
	height: 2px;
	width: 18px;
	transition: background .2s ease-out;
}

.bars::before {
	top: 5px;
	position: absolute;
}

.bars::after {
	top: -5px;
	position: absolute;
}

/* Tablet Menu*/
@media all and (min-width: 500px){
	.menu {
		justify-content: center;
	}

	.logo {
		flex: 1;
	}

	.item.button {
		width: auto;
		display: block;
	}
	.toggle {
		order: 2;
	}

	.button.secondary {
		border: 0;
	}

	.button a {
		padding:  7px; 15px;
		background: teal;
		border: 1px solid #006d6d;
		border-radius: 50em;
		text-decoration: none;
	}

	.button.secondary a{
		background: transparent;
	}

	.button a:hover {
		transition: all .25s;
	}

	.button:not(.secondary) a:hover{
		background: #006d6d;
		border-color: #005959;
	}

	.button.secondary a:hover {
		color:#ddd;
	}
}

/* Desktop menu */

@media all and (min-width: 768px) {
	.item {
		display: block;
		width: auto;

	}

	.toggle {
		display: none;
	}

	.logo {
		order: 0;
	}

	.item {
		order: 1;
	}

	.button {
		order: 2;
	}

	.menu li {
		padding: 15px 10px;
	}

	.menu li.button {
		padding-right: 0;
	}
}