:root {
	--main-color--: #F2E934;
}
body {
	margin:0px;
	padding:0px;
	font-family: Arial;
}
.navbar {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	position:sticky;
	top:0px;
	left:0px;
	right:0px;
	margin:0px;
	background-color: var(--main-color--);
	padding: 20px;
	color:white;
}
.navbar #title {
	font-size: 35px;
}
.navbar #title img {
	height:30px;
}
.navbar #search_div {
	flex-grow: 1.5;
	flex-shrink: 2;
	padding: 20px;
}
input[type=text], input[type=password], input[type=email] {
	background-color:rgba(0,0,0,0);
	border-top:0px solid rgba(0,0,0,0);
	border-left:0px solid rgba(0,0,0,0);
	border-right:0px solid rgba(0,0,0,0);
	width: 95%;
}
.navbar #search_div #search_btn {
	width: 2%;
}
.navbar #menu {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-evenly;
}
.navbar #menu * {
	margin:10px;
}
.navbar a {
	color:inherit;
	text-decoration:inherit;
}
.navbar #menu-inflater {
	display:none;
}
.navbar #menu-inflater img {
	width:35px;
}
.navbar #menu-close {
	display:none;
}
.display {
	position:fixed;
	left:10%;
	right:10%;
	top:10%;
	bottom:10%;
	background-color:white;
	padding:5%;
	height:auto;
	overflow:auto;
	border:1px solid black;
}
.display .display_close {
	color: blue;
	cursor: pointer;
}
.display .profile_div img {
	height:20px;
}
@media (max-width: 640px) {
	.navbar #search_div {
		display:none;
	}
	.navbar #menu-inflater {
		display:initial;
	}
	.navbar #menu-close {
		display:initial;
	}
	.navbar #menu {
		display:none;
		position:fixed;
		top:0px;
		left:0px;
		bottom:0px;
		right:20%;
		background-color:var(--main-color--);
		animation: swipe-in 0.5s;
	}
	.display {
		left:0%;
		right:0%;
		top:10%;
		bottom:0%;
	}
}
.content * {
	margin:20px;
}

.searchResults {
	position:fixed;
	top:100px;
	background-color: white;
	border-radius: 3px;
	padding:10px;
	border:1px solid yellow;
}
.searchResults div {
	cursor:pointer;
}

textarea {
	width:50%;
	font-family: Arial;
}

.err_message {
	color:red;
}

input[type=button], input[type=file] {
	background-color:var(--main-color--);
	padding:10px;
	box-shadow: 2px 2px 31px -3px rgba(0,0,0,0.75);
	width:90%;
}

@keyframes swipe-in {
	from {
		left: -99px;
	}
	to {
		left: 0px;
	}
}

.switchBtns {
	width:48% !important;
	margin:1%;
}
.hidden-container {
	display:none;
}
.item {
	box-shadow: 2px 2px 2px -3px rgba(0,0,0,0.75);
	padding:10px;
	margin:5px;
}