body {
	font-family: 'LXGW WenKai Screen';
	font-weight: normal;
	margin: 0;
}

h1 {
	font-family: 'LXGW WenKai Screen';
	font-weight: 600;
	letter-spacing: -1px;
}

h2 {
	font-family: 'LXGW WenKai Screen';
	font-weight: 600;
	letter-spacing: -1px;
}

h3 {
	font-family: 'LXGW WenKai Screen';
	font-weight: 600;
	letter-spacing: -0.8px;
}

h4 {
	font-family: 'LXGW WenKai Screen';
	font-weight: 600;
	letter-spacing: -0.8px;
}

p {
	font-family: 'LXGW WenKai Screen';
}

button {
	font-family: 'LXGW WenKai Screen';
}

input {
	font-family: 'LXGW WenKai Screen';
}

a {
	font-family: 'LXGW WenKai Screen';
}

b {
	font-weight: 600;
}

strong {
	font-weight: 600;
}

.font-black {
	font-weight: 800;
}

.font-thin {
	font-weight: 200;
}


::-webkit-scrollbar {
	display: none;
}

/* 





**********************








 */




html {
	background-color: black;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: repeating-linear-gradient(90deg,
			rgba(0, 0, 0, 0.01),
			rgba(0, 0, 0, 0.01) 2px,
			transparent 2px,
			transparent 4px);
	z-index: 9999;
}

div,
h1,
h2,
h3,
h4,
p {
	color: #252525;
}

h1 a {
	text-decoration: none;
	color: #252525;
	transition: all 0.3s ease;
}

h1 a:hover {
	filter: blur(4px);
}

button.nd-normal {
	border: 1px solid rgba(25, 25, 25, 0.2);
	background: rgba(250, 250, 250, 0.5);
	color: rgb(25, 25, 25);
	font-weight: 500;
}

button.nd-black {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgb(35, 35, 35);
	color: rgb(240, 240, 240);
	font-weight: 500;
}

.p1 {
	margin-top: -1rem;
	margin-left: 20vw;
	margin-right: 20vw;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100vh;
	width: fit-content;
}

.p1 h1 {
	font-size: 3rem;
	font-weight: 600;
}

.main-icon {
	width: 6.9rem;
	margin-left: -1rem;
	margin-bottom: .5rem;
}

@media (max-width: 480px) {
	.p1 {
		margin-left: 5vw;
		margin-right: 5vw;
	}
}

.p1 .tag-container {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	row-gap: 12px;
}

.p2 h1 {
	margin-top: .5rem;
	margin-left: 1.5rem;
	color: #f0f0f0;
}

.p2 h1 span {
	color: #e6ff55;
}

@keyframes slide-r {
	from {
		transform: translateX(-100%);
	}

	to {
		transform: translateX(0);
	}
}

@keyframes slide {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

.images-group {
	white-space: nowrap;
	position: relative;
	height: 25vh;
	font-size: 0;
	width: 5000px;
	transition: all 0.3s ease;
}

.images-group:hover .images-group-slide,
.images-group:hover .images-group-slide-r {
	animation-play-state: paused;
}

.images-group:hover,
.images-group:hover {
	z-index: 10;
}


.images-group-slide {
	display: inline-block;
	height: 100%;
	animation: 20s slide infinite linear;
}

.images-group-slide-r {
	display: inline-block;
	height: 100%;
	animation: 20s slide-r infinite linear;
}

@media (max-width: 480px) {
	.images-group-slide {
		animation: 30s slide infinite linear;
	}

	.images-group-slide-r {
		animation: 30s slide-r infinite linear;
	}
}

.images-group-slide img,
.images-group-slide-r img {
	width: auto;
	height: 100%;
	transition: all 0.3s ease;
}

.images-group-slide img:hover,
.images-group-slide-r img:hover {
	transform: scale(1.23);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
	z-index: 20;
	position: relative;
}

.mark {
	font-size: 3.5rem;
	opacity: .3;
	margin-right: -1.2rem;
	color: #6495ed !important;
	position: relative;
	font-weight: bold;
}

.mark.normal {
	color: rgba(25, 25, 25, 0.3) !important;
}

.tag {
	display: inline-block;
	border: .2rem solid rgba(125, 125, 125, 0.1);
	border-radius: 10px;
	width: auto;
	padding: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

.tag h4 {
	margin: 0;
}









@media (prefers-color-scheme: dark) {
	:root {
		--icon: 100%;
		--blur: rgba(19, 23, 31, 0.69);
		--button-text: rgba(240, 240, 240, 0.8);
		--button-background: rgb(35, 35, 35);
		--border: rgba(255, 255, 255, 0.2);
	}
}

@media (prefers-color-scheme: light) {
	:root {
		--icon: 0;
		--blur: rgba(255, 255, 255, 0.69);
		--button-text: rgba(25, 25, 25, 0.8);
		--button-background: rgba(250, 250, 250, 0.5);
		--border: rgba(25, 25, 25, 0.2);
	}
}

body {
	max-width: 100vw;
	overflow-x: hidden;
	min-height: 100vh;
}

article {
	border-radius: 1rem;
}

h1 {
	margin-bottom: 0.4rem;
}

h2 {
	margin-bottom: 0.4rem;
}

h3 {
	margin-bottom: 0.4rem;
}

button {
	font-family: 'Rubik', sans-serif;
	user-select: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	white-space: nowrap;
	height: 1.8rem;
	border-radius: .3rem;
	background: rgb(35, 131, 226);
	line-height: 1.2;
	padding-left: 1rem;
	padding-right: 1rem;
	font-weight: 500;
	border: none;
	font-size: .9rem;
	transition: all .3s ease-in-out;
	margin-top: 5px;
	margin-left: 5px;
	color: white;
}

button.nd {
	border: 1px solid var(--border);
	background: var(--button-background);
	color: var(--button-text);
	font-weight: normal;
}

button:hover {
	filter: blur(2px);
}

button a {
	text-decoration: none;
	color: white;
}

button.nd a {
	text-decoration: none;
	color: var(--button-text);
}

button a:hover {
	text-decoration: none;
}

.invert-icon {
	filter: invert(var(--icon));
}

.outline {
	border: 6px dashed rgba(125, 125, 125, 0.2);
}

.ani-outline {
	border: 0px dashed rgba(125, 125, 125, 0.2);
	transition: all .2s ease-in-out;
}

.ani-outline:hover {
	border: 6px dashed rgba(125, 125, 125, 0.2);
}

.top-image {
	width: 100vw;
	height: 40vh;
	min-height: 200px;
	overflow: hidden;
}

.top-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-title {
	position: relative;
	margin-top: -5rem;
	font-size: 2.6rem;
	font-weight: 800;
	line-height: .8;
	background-color: var(--blur);
	padding: 1rem;
	width: 20rem;
	max-width: 90vw;
	padding-bottom: .5rem;
	border-radius: 1.2rem;
	min-height: 2rem;
	backdrop-filter: saturate(180%) blur(25px);
	-webkit-backdrop-filter: saturate(180%) blur(25px);
}

.top-title small {
	font-size: 1.5rem;
}

.bottom-box {
	width: 100vw;
	overflow: hidden;
	min-height: 200px;
	height: auto;
	background-color: rgba(125, 125, 145, 0.05);
	padding-bottom: 2rem;
}

@media(max-width:575px) {
	.top-title {
		width: 300px;
	}
}

@media(min-width:1080px) {
	.container {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.stick-img {
	position: relative;
}

.stick-img h4 {
	padding-left: 2.3rem;
}

.stick-img:hover {
	filter: none;
}

.stick-img img {
	position: absolute;
	bottom: 0;
	height: 3rem;
	right: auto;
	left: 0;
	transition: all .3s cubic-bezier(0.42, 0, 0.58, 1);
	margin-left: -5px;
}

.stick-img-r h4 {
	padding-left: 0;
	padding-right: 2.3rem;
}

.stick-img-r img {
	left: auto;
	right: 0;
}

.stick-img img:hover {
	height: 7rem;
	width: auto;
}