body {
	margin: 0;
	font-size:16px;
	height: 100%;
	width: 100%;
	/* min-width:320px; */
	padding:0;
	 box-sizing: border-box;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */	
	font-family: "Montserrat", "Segoe UI", sans-serif;
	font-family: paragraph_font;
	letter-spacing: 1.5px;
	text-transform: lowercase;
	justify-content: space-around;
	position: fixed;
	overflow: hidden;
	background: #f2f2f2;
	color: black;
}

@font-face {
   font-family: paragraph_font;
   src: url(paragraph_font/regular.ttf);
}

h1 {
    color: black;
    height: 44px;
	text-align: center;
    position: absolute;
    z-index: 2;
    margin: 0px;
    width: 100%;
}

.icon_container {
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: background 1s;
}
.outline_icon {
    stroke-dasharray: 450;
    stroke-dashoffset: 450;
    fill-opacity: 0;
	animation: outline 2s, fill 2s;
	animation-delay: 0s, 1s;
	animation-fill-mode: forwards, forwards;
}

svg {
	transition: width 1s, top 1s;
	position: absolute;
}

@keyframes outline {
	to {
		stroke-dashoffset: 0;
	}
}

@keyframes fill {
	to {
		fill-opacity: 1;
		stroke-width: 0;
	}
}

.container {
	display: flex;
	background: #39795b;
}

input {
	border: 2px solid #ffae00;
    margin: 4px;
    border-radius: 5px;
    padding: 16px;
    outline: 0px;
    width: 285px;
	/* font-family: 'round_modern'; */
    /* text-transform: lowercase; */
}

input:focus {
	border: 2px solid #b37a00;
}

.create_account_p {
    text-decoration-color: #ffae00;
}

.create_account_p:hover {
	text-decoration-color: #b37a00;
}

.submit {
	background: #ffae00;
	color: white;
	border-radius: 5px;
	text-align: center;
	padding: 8px;
	font-size: 20px;
}

.submit:hover {
	background-color: #b37a00;
	cursor: pointer;
}

.side_list {
	height: fit-content;
	max-width: 200px;
	width: 0px;
	background: #39795b;
	font-size: 10px;
	color: white;
	text-align: center;
	z-index: 1;
	position:absolute;
	border-radius: 5px;
	top: 52px;
	transition: width 0.5s;
}

.side_list_index {
	right: 8px;
}

.side_list_other {
	left: 8px;
}
.menu_icon {
	position: relative;
}

.menu_overlay {
	position: fixed;
	z-index: 5;
	top: 0px;
	align-items: center;
	justify-items: center;
	display: none;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: 0.5;
}

.menu_div {
	margin: 10px;
	opacity: 0;
	display: flex;
}

.menu_button {
	color: black;
    width: fit-content;
    height: fit-content;
	left: calc(100% - 38px);
    border-radius: 5px;
    z-index: 2;
    position: absolute;
    display: flex;
    top: 10px;
    cursor: pointer;
}

.menu_button_index {
	background: none;
	z-index: 1;
	display:none;
	color: black;
    
}

.sign_in_button {
	right: 4px;
	top: 6px;
	position: absolute;
	z-index: 3;
	color: #ffae00;
    background: white;
    border-radius: 5px;
}

p {
	font-size: 20px;
	width: fit-content;
	margin: 0px;
	position: relative;
	color: white;
	text-align: center;
}

.form_post_recipe {
	background: grey;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    margin: 8px;
}

.button_div {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	height: fit-content;
	height: 180px;
    justify-content: space-evenly;
	width: 150px;
	margin: 8px;
	border-radius: 8px;
	cursor: pointer;
	transition: box-shadow 0.5s;
	opacity: 0%;
	animation: fade_in 1s;
	animation-fill-mode: forwards;
	animation-delay: 4.5s;
}

.button_div:hover {
	box-shadow: inset 0px 0px 4px 4px #ccc;
}

.button_container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: absolute;
    width: calc(100% - 96px);
    /* height: calc(100% - 84px); */
    padding-top: 16px;
    overflow-y: scroll;
    background: white;
    padding: 48px;
    height: 300px;
    top: calc(50% - 198px);
    align-items:center;
	box-shadow: 10px 0px 20px 20px #39795b;
	opacity: 0%;
	animation: split2 1s;
	animation-fill-mode: forwards;
	animation-delay: 3.5s;
}

.button_text {
	/* color: black; */
	font-size: 24px;
}

.button {
	display: flex;
	width: 100px;
	justify-content: space-evenly;
	font-size: 20px;
	align-items: center;
	flex-direction: row;
	padding: 16px;
	border-radius: 8px;
	cursor: pointer;
	transition: box-shadow 0.5s;
	opacity: 0%;
	animation: appear 1s;
	animation-fill-mode: forwards;
	animation-delay: 4s;
}

@keyframes appear {
	to {
		opacity: 100%;
	}
}

.button:hover {
	box-shadow: inset 0px 0px 4px 4px #ccc;
}

.username {
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	text-align: left;
}

#icon {
	position: absolute;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

#icon_img {
	width: 100px;
}

@media (max-width: 759px) {
	.button_container {
		padding-top: 28px;
		padding-bottom: 28px;
		height: 320px;
		opacity: 0%;
		animation: split3 1s;
		animation-fill-mode: forwards;
		animation-delay: 3.5s;
	}
	.button_div {
		height: 140px;
	}
}

@media (max-width: 427px) {
	.button_container {
		padding: 16px;
		/* padding: 0px; */
		height: 400px;
		/* height: 0px; */
		opacity: 0%;
		width: calc(100% - 32px);
		top: calc(50% - 216px);
		animation: split1 1s;
		animation-fill-mode: forwards;
		animation-delay: 3.5s;
    }
	
	.button_div {
		width: 136px;
	}
	#icon_img {
		width: 70px;
	}
}



@media (max-height: 699px) {
	#icon_img {
		width: 70px;
	}
}

@media (max-height: 649px) {
	#icon_img {
		width: 50px;
	}
}

@media (max-width: 335px) {
	.button_container {
		padding: 16px;
		height: calc(100% - 82px);
		width: calc(100% - 32px);
		top: 50px;
		box-shadow: inset 0px 20px 20px -20px #39795b, inset 0px 20px 8px -10px #39795b;
		opacity: 0%;
		animation: split4 1s;
		animation-fill-mode: forwards;
		animation-delay: 3.5s;
    }
	
	.button_div {
		height: 120px;
	}
	
	#icon_img {
		width: 40px;
	}
}

@keyframes split1 {
	from {
		height: 0px;
		padding: 0px;
		width: 100%;
		top: 50%;
		opacity: 0%;
	}
	to {
		height: 540px;
		padding: 16px;
		width: calc(100% - 32px);
		top: calc(50% - 216px);
		opacity: 100%;
	}
}

@keyframes split2 {
	from {
		height: 0px;
		padding: 0px;
		width: 100%;
		top: 50%;
		opacity: 0%;
	}
	to {
		height: 440px;
		padding: 48px;
		width: calc(100% - 96px);
		top: calc(50% - 198px);
		opacity: 100%;
	}
}

@keyframes split3 {
	from {
		height: 0px;
		padding: 0px;
		width: 100%;
		top: 50%;
		opacity: 0%;
	}
	to {
		height: 460px;
		padding: 48px;
		padding-top: 28px;
		padding-bottom: 28px;
		width: calc(100% - 96px);
		top: calc(50% - 198px);
		opacity: 100%;
	}
}
@keyframes split4 {
	from {
		height: 0px;
		padding: 0px;
		width: 100%;
		opacity: 0%;
	}
	to {
		height: calc(100% - 82px);
		padding: 16px;
		width: calc(100% - 32px);
		opacity: 100%;
	}
}

@keyframes fade_in {
	from {
		opacity: 0%
	}
	to {
		opacity: 100%;
	}
}

.emailVerificationDiv {
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
    max-width: 600px;
    height: 80%;
    color: black;
    padding: 24px;
    box-shadow: inset 0px 0px 20px 16px #39795b;
    border-radius: 8px;
}

.emailVerifyOuter {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	z-index: 3;
	text-align: center;
}

.emailVerifyOverlay {
	width: 100%;
    height: 100%;
    position: absolute;
    background: black;
    z-index: 2;
    opacity: 50%;
}

.verify {
	border: 2px solid lightgray;
	animation: none;
	opacity: 1;
	width: unset;
}