* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: "Roboto", sans-serif;
	color: #fff;
}
body {
	background-image: url(/Assets/scott-webb-1CVy8JStf3A-unsplash.jpg);
	background-size: cover;
	background-position: center;
	height: 100vh;
}
a {
	text-decoration: none;
	text-transform: uppercase;
}
ul {
	list-style-type: none;
}
header {
	display: flex;
	justify-content: space-between;
	background-color: rgb(29, 25, 25);
	align-items: center;
	padding: 2rem 0rem;
	height: 14vh;
}
header .logo {
	font-size: 2rem;
	margin: 0rem 1.5rem;
}
ul {
	display: flex;
	justify-content: space-evenly;
}
ul li {
	margin-right: 1rem;
}
ul li a {
	font-size: 1.3rem;
	padding: 8px 10px;
}
ul li a.active,
ul li a:hover {
	background-color: rgb(36, 68, 173);
	transition: 0.5s;
	border-radius: 4px;
}
.hamburger {
	position: absolute;
	right: 1.5rem;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	display: none;
}
.hamburger .bar {
	height: 3px;
	width: 100%;
	background-color: white;
	border-radius: 10px;
}
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}
	.hamburger {
		display: flex;
		cursor: pointer;
	}

	ul {
		flex-direction: column;
		position: absolute;
		top: 14vh;
		right: -100%;
		background-color: rgba(0, 0, 0, 0.7);
		height: 86vh;
		width: 100%;
        align-items: center;
        transition: right 0.3s ease-in;
	}
	ul li {
		margin-right: 0px;
    }
    .menu-slide {
        right: 0%
    }
}