
@import url('https://fonts.googleapis.com/css2?family=Macondo&display=swap');


/* Navbar */

.navigation {
	position: sticky;
	top: 0px;

	height: 5vh;
	
	padding-top: 1rem;
	z-index: 1;
	padding-left: 0;
	padding-right: 0;
	

	background-color: rgb(210, 210, 210);
	opacity: 0.5;
	
}

.navbar {
	position: sticky;
	top: 0px;

	display: flex;
	justify-content: space-between;

	width: 100%;
	z-index: 150;
	padding: 0; 
}

.navbar-brand {
	
	margin: 7px;
	padding-left: 15px;

	cursor: pointer;

	font-family: "Macondo", cursive;
	font-weight: 400;
	font-style: normal;

	color: black;
	
}

.navbar-brand:link,
.navbar-brand:hover,
.navbar-brand:visited {
	text-decoration: none;
	
}



.button_container {
	position: relative;
	
	margin-top: 5px;
	margin-right: 15px;
	right: 15px;
	height: 27px;
	width: 27px;
	
	

	cursor: pointer;
	z-index: 100;
	transition: opacity .25s ease;
}


.button_container.active {
	position: fixed;
	top: 46px;
	right: 8.8rem;
}

@media (max-width: 767px) {
	h1 {
		font-size: 2.5rem;
	}
	.button_container.active {
		right: 15px;
	}
}

.button_container.active .top {
	transform: translateY(9px) translateX(0) rotate(45deg);
	background: #FFF;
}

.button_container.active .middle {
	opacity: 0;
	background: #FFF;
}

.button_container.active .bottom {
	transform: translateY(-7px) translateX(0) rotate(-45deg);
	background: #FFF;
}

.button_container span {
	background: #fff;
	border: none;
	height: 2px;
	width: 27px;
	position: absolute; 
	transition: all .35s ease;
	cursor: pointer;
}

.button_container .black {
	background: #000;
}

.button_container span:nth-of-type(2) {
	top: 8.3px;
}

.button_container span:nth-of-type(3) {
	top: 16px;
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		left: 20%;
	}
	100% {
		opacity: 1;
		left: 0;
	}
}
 