a {
	color:black;
}

.header {
	position: absolute;
}
.header__hamburger {
	display: none;
}
.header__title {
	position: relative;
	z-index:2;
}
.header__menu-items {
	position: relative;
	z-index: 1;
}


@media screen and (orientation:portrait),
screen and (max-width:768px) {
	.header {
		position: relative;
	}
	.header__hamburger {
		display: inline;
		position:absolute;
		z-index: 2;
	}
	.header__menu-items {
		visibility: hidden;
		pointer-events: none;
		flex-direction: column;
		height: 100%;
		position: absolute;
		background-color: white;
		top: 0vh;
		left: 0;
		text-align: right;
		width: 100%;
		justify-content: start;
		padding-top: 32px;
		box-sizing: border-box;
	}
	.header__menu-item {
		display: block;
		padding-top:5vw;
		background-color: white;
	}
}