body {
	height: 100%;
	width: 100%;
	padding: 0px;
	padding-top: 30px;
	margin: 0px;
	background: linear-gradient(to right, #77C9D4, #57BC90) fixed;
	display: flex;
	flex-direction: column;
	align-items: center;
}

body > h1 {
	margin: 0px;
	padding: 0px;
	margin-bottom: 10px;
	font-size: 6rem;
	color: #002517;
}

body > h2 {
	margin: 0px;
	padding: 0px;
	color: #002517;
}

body > h3 {
	margin: 0px;
	padding: 0px;
	margin-bottom: 20px;
	color: #002517;
}

.github-icon {
	position: fixed;
	right: 5px;
	top: 5px;
}

.github-icon > img:hover {
	background-color: grey;
	border-radius: 365px;
}

.github-icon > img {
	height: 40px;
	width: 40px;
	border-radius: 365px;
}

.recipe-search {
	display: flex;
	flex-direction: row;
	width:100%;
	margin-bottom: 20px;
	justify-content: center;
}

#search {
	width: 60vw;
	height: 40px;
	background: red;
	border: 0px;
	padding: 5px;
	padding-left: 20px;
    background: rgba(220, 220, 220, 0.5);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#clear_button {
	border: 0px;
    padding: 0px;
    padding-right: 10px;
    padding-left: 20px;
    background: rgba(220, 220, 220, 0.5)
}

#search_button {
	border: 0px;
    padding: 0px;
    padding-right: 20px;
    padding-left: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;

}

.recipe-list {
    padding-left: 0;
	list-style-type: none;
}

.recipe-list-item {
	display:flex;
	flex-direction: column;
	background-color: rgba(1,82,73,0.75);
	color: white;
	margin: 0px;
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 50px;
	padding-right: 50px;
	margin-bottom: 20px;
	align-items: flex-start;
	border-radius: 5px;
}

.recipe-list-item:hover {
  	filter: brightness(0.8);
  	cursor: pointer;
}

.recipe-list-item > h3 {
	font-size: 2rem;
	margin: 0px;
}

.recipe-list-item > p {
	padding: 0px;
	margin: 0px;
}

.recipe-item {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 998;
	height: 100%;
	width: 100%;
	background: linear-gradient(to bottom, #77C9D4, #57BC90) fixed;
	overflow-y: auto;
}

.recipe-item-back {
	position: fixed;
	top:20px;
	left: 0px;
	z-index: 999;
	height: 50px;
	width: 50px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px; 
	background-color: rgba(1, 82, 73, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
}

.recipe-item-back > img {
	height: 30px;

}

.recipe-item-back:hover {
  	filter: brightness(0.8);
  	cursor: pointer;
}

.recipe-item-inner {
	padding-left: 100px;
	color: #002517;
}

.recipe-item-inner > h1 {
	font-size: 5rem;
	padding: 0px;
	margin-bottom: 10px;
}

.recipe-item-inner > h3 {
	margin: 0px;
	margin-bottom: 10px;
}

.recipe-image {
	border-radius: 5px;
	width: 50vw;
	margin-bottom: 20px;
}

.admin {
	background: linear-gradient(to right, #77C9D4, #57BC90) fixed;
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	height: 100%;
	width: 96%;
	padding-left: 2%;
	padding-right: 2%;
	overflow-y: auto;
}

.admin > h1 {
	font-size: 5rem;
	padding: 0px;
	margin-bottom: 10px;
}

.admin-element-outer {
	display: flex;
	flex-direction: row;
	margin: 0px;
	margin-top: 20px;
	padding-bottom: 20px;
	border-color: black;
	border-width: 1px;
	border-bottom-style: solid;
}

.admin-element-outer > button {
	margin-left: 50px;
	border-radius: 5px;
}

.json-editor {
    margin: 0px;
    margin-right: 20px;
    display: flex;
    width: 100%;
    height: 70%;
}

.loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #002517;
}