.page {
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: center;
}
.guides {
	background: #2c2f33;

	border-radius: 50px;
	margin: 50px 0px 50px 0px;
	height: calc(100% - 100px);
	width: 50%;
}
.guidesTop {
	padding: 50px 50px 50px 50px;
	margin: 0px;

	border-radius: 50px 50px 0px 0px;
	overflow: hidden;
	position: relative;
	height: fit-content;
}
.guidesTop > :first-child {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 0;
	z-index: 1;
}
.guidesBackground {
	background-image: linear-gradient(90deg, #ff6666, #ff9c66);
	background-size: 200%;
	animation: background infinite 50s alternate linear;
	opacity: 0.75;

	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	z-index: 0;
}
input {
	background: none;
	outline: none;
	border: none;
	color: white;
	font-family: 'Montserrat', sans-serif;
}
@keyframes background {
	0% {
		background-position: left;
	}
	100% {
		background-position: right;
	}
}
.list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	margin: 50px 50px 50px 50px;
	gap: 25px;
	overflow-y: scroll;
	scrollbar-width: thin;
}
.list > * {
	aspect-ratio: 3 / 2;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	background-position: center;
	background-size: 160%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	padding: 20px;
}
.details > * {
	margin-top: 10px;
}
.details > .name {
	font-size: 30px;
	font-weight: 600;
}
.tags > span {
	padding: 5px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.2);
	margin-right: 10px;
}
.tags > span::before {
	content: '#';
	font-weight: 600;
}
.tags > :nth-child(n + 4) {
	display: none;
}
.tags > .expandTag {
	font-weight: 600;
}
.tags > .expandTag::before {
	content: '';
}
::placeholder {
	color: white;
}
::-webkit-scrollbar {
	width: 10px;
}
::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
}
