@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);

*,::after,::before {
	box-sizing: border-box;
	user-select: none;
	-webkit-user-drag: none
}

body, html {
	font-family: Roboto,sans-serif;
	background-color: #18181b;
	color: #fff;
	padding: 0;
	margin: 0
}

::selection {
	background-color: rgba(255,255,255,.3)
}

a {
	color: unset;
	font-weight: 900;
	text-decoration: underline 2px dotted;
	cursor: pointer
}

.item {
	cursor: pointer;
	width: max-content;
	border-radius: 5px;
	border: 1px solid #525252;
	background: linear-gradient(180deg,#1a1d22,#18181b 80%);
	font-size: 1.1rem;
	padding: 11px;
	margin: 5px;
	font-weight: 700;
	transition: scale .05s ease-in;
	animation: .4s linear popup;
	text-overflow: ellipsis;
	overflow-wrap: break-word;
	white-space: nowrap;
	overflow: hidden;
	line-height: 1rem!important;
	max-width: 70vw
}

@keyframes popup {
	from {
		opacity: 0;
		scale: 0.9
	}

	to {
		opacity: 1;
		scale: 1
	}
}

.item:active,.item:hover {
	background: linear-gradient(180deg,#3d4249,#18181b 80%);
	border-color: #a3a3a3;
	scale: 1.03
}

.item.new {
	font-weight: 900;
	color: #bbf!important
}

.item.censored {
	font-weight: 900;
	color: #fbb!important
}

.item.unknown {
	font-weight: 900;
	color: #fcb!important
}

.item span {
	pointer-events: none;
	margin-right: .5rem
}

.item img {
	display: inline-block;
	color: #fff!important;
	margin: 0 .05em 0 .1em;
	vertical-align: -.15em;
	height: 1em;
	width: 1em;
	line-height: 1em
}

#item_emoji img,img.emoji {
	display: inline-block;
	height: 1em;
	width: 1em;
	margin: 0 .05em 0 .1em;
	vertical-align: -.1em;
	line-height: 1em
}

.recipes {
	padding: 0;
	margin: 0 0 0 4px;
	list-style: none
}

.recipes li {
	display: flex;
	flex-flow: row wrap;
	align-content: center;
	align-items: center;
	max-width: 90vw;
	padding: 0;
	margin: 0;
	gap: 1px;
	color: #aaa
}

.recipes .item {
	color: #fff;
	font-size: 1rem;
	border-radius: 3px;
	max-width: 70%;
	padding: 6px;
	margin: 4px
}

.recipes .item:first-of-type {
	margin-left: 0
}

.recipes li>span {
	margin-right: .5rem
}

.recipes>span {
	color: #aaa;
	display: block;
	margin: .8rem .5rem 0
}

.recipes>span a {
	text-decoration: underline dotted;
	text-decoration-thickness: 2px;
	transition: color .2s;
	font-weight: 700;
	cursor: pointer
}

.recipes>span a:hover {
	color: #ccc
}

.btn {
	--color: #303034;
	--darker-color: #25252b;
	transition: background-color .2s,border-color .2s,color .2s;
	font-family: Roboto,sans-serif;
	padding: .5rem 1.2rem;
	border-radius: 5px;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	outline: 0;
	border: none;
	background-color: #404047;
	border-bottom: 4px solid #313136;
	text-decoration: none;
	width: max-content;
	color: #ccc
}

.btn:disabled {
	pointer-events: none;
	cursor: not-allowed;
	opacity: .5
}

.btn.colored,.btn:active,.btn:focus,.btn:hover {
	color: #fff;
	background-color: var(--color)!important;
	border-bottom-color: var(--darker-color)!important
}

.btn:active {
	transform: translateY(2px)
}

.btn.discord {
	--color: #5865F2;
	--darker-color: #363faa;
	display: flex;
	align-items: center;
	align-content: center;
	gap: .5rem
}

.btn.discord img {
	width: 1.2rem
}

.ibtn {
	display: flex;
	height: 1.75rem;
	width: 1.75rem;
	align-items: center;
	align-content: center;
	justify-content: center;
	transition: opacity .3s;
	cursor: pointer;
	background: 0 0;
	border: none;
	outline: 0;
	opacity: .5;
	margin: 0
}

.ibtn:focus,.ibtn:hover {
	opacity: 1
}

.ibtn img {
	pointer-events: none;
	width: 1.5rem
}

@media screen and (max-width: 525px) {
	.recipes {
		margin-left:0
	}

	.recipes li {
		font-size: .6rem;
		gap: 0
	}

	.recipes .item {
		font-size: 1rem;
		padding: 4px
	}

	.recipes li::before {
		display: none
	}
}

.loader {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	border: 4px solid #aaa;
	border-bottom-color: transparent;
	animation: 1s linear infinite spin
}

button .loader {
	width: 1rem;
	height: 1rem;
	border: 3px solid #fff;
	border-bottom-color: transparent;
	vertical-align: sub;
	margin-left: .5rem
}

@keyframes spin {
	from {
		rotate: 0deg
	}

	to {
		rotate: 360deg
	}
}

nav {
	display: flex;
	margin-top: 2rem;
	font-size: 1.3rem;
	align-content: center;
	align-items: center;
	gap: 2rem
}

nav a {
	display: flex;
	color: #fff;
	transition: opacity .2s,scale .2s;
	text-decoration: none;
	font-weight: unset;
	align-items: center;
	align-content: center;
	opacity: .8;
	gap: 8px
}

nav a:focus,nav a:hover {
	outline: 0;
	opacity: 1;
	scale: 1.05
}

.mobile_nav {
	display: none
}

.mobile_logo {
	cursor: pointer;
	height: 2rem
}

#hamburger_btn {
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	cursor: pointer
}

body.content {
	display: flex;
	background-image: linear-gradient(180deg,rgba(255,255,255,.06),transparent);
	background-size: 100% 200px;
	background-repeat: no-repeat;
	min-height: 200px
}

body.content main {
	width: 80vw;
	margin: 0 auto
}

body.content header {
	display: flex;
	margin-top: 8rem;
	flex-direction: column;
	padding-bottom: 8px
}

body.content .logo img {
	max-width: 600px;
	width: 500px
}

body.content header>p {
	font-size: 1.2rem;
	margin-bottom: 1rem;
	margin-top: .25rem;
	padding: 0
}

@media screen and (max-width: 1010px) {
	body.content main {
		width:90vw
	}

	body.content .logo img {
		width: 90%
	}
}

@media screen and (max-width: 500px) {
	.desktop_nav {
		display:none
	}

	.mobile_nav {
		display: flex
	}

	body.content header {
		margin-top: 1.5rem
	}

	body.content .logo img,body.content header>p {
		display: none
	}

	.desktop_nav.open {
		display: flex;
		position: fixed;
		flex-direction: column;
		align-content: start;
		align-items: start;
		background: #24272b;
		padding: 1rem 5vw 2rem;
		animation: .25s ease-in-out hamburger-a2;
		z-index: 696969;
		width: 100%;
		opacity: 1;
		top: 4rem;
		left: 0
	}

	.desktop_nav.open a {
		width: 100%
	}

	.desktop_nav.open+.mobile_nav {
		background: #24272b;
		z-index: 696969;
		position: fixed;
		animation: .25s ease-in-out hamburger-a1;
		padding: 32px 5vw 1rem;
		width: 100%;
		margin: 0;
		left: 0;
		top: 0
	}

	.desktop_nav.open~.hamburger_bg+::before {
		content: "";
		display: block;
		height: 80px
	}

	.desktop_nav.open~.hamburger_bg {
		content: "";
		position: fixed;
		width: 100vw;
		height: 100vh;
		animation: .25s ease-in-out hamburger-a2;
		background: rgba(0,0,0,.5);
		z-index: 999;
		left: 0;
		top: 0
	}
}

@keyframes hamburger-a1 {
	from {
		background: 0 0
	}
}

@keyframes hamburger-a2 {
	from {
		opacity: 0
	}
}

#hamburger_icon {
	width: 3rem;
	height: 3rem
}

#hi_l1,#hi_l2 {
	transform-box: fill-box;
	transform-origin: center
}

.desktop_nav.open+.mobile_nav #hi_l1 {
	animation: .4s ease-out both hi_l1_anim
}

.desktop_nav.open+.mobile_nav #hi_l2 {
	animation: .4s ease-out both hi_l2_anim
}

.desktop_nav.open+.mobile_nav #hi_l3 {
	animation: .4s ease-out forwards hi_l3_anim
}

@keyframes hi_l1_anim {
	0% {
		animation-timing-function: cubic-bezier(0.16,-0.88,0.97,0.53);
		transform: translateY(0)
	}

	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34,1.56,0.64,1);
		transform: translateY(10px)
	}

	100% {
		transform-origin: center;
		transform: translateY(10px) rotate(-45deg) scale(.9)
	}
}

@keyframes hi_l2_anim {
	29% {
		opacity: 1
	}

	100%,30% {
		opacity: 0
	}
}

@keyframes hi_l3_anim {
	0% {
		animation-timing-function: cubic-bezier(0.16,-0.88,0.97,0.53);
		transform: translateY(0)
	}

	30% {
		transform-origin: center;
		animation-timing-function: cubic-bezier(0.34,1.56,0.64,1);
		transform: translateY(-10px)
	}

	100% {
		transform-origin: center;
		transform: translateY(-6px) translateX(6px) rotate(45deg) scale(.9)
	}
}

.centered {
	display: flex;
	text-align: center;
	align-items: center;
	align-content: center;
	flex-direction: column;
	justify-content: center
}
