/*

██████  ███████ ██   ██ ██ ██████  ██    ██ 
██   ██ ██      ██  ██  ██ ██   ██ ██    ██ 
██   ██ █████   █████   ██ ██████  ██    ██ 
██   ██ ██      ██  ██  ██ ██   ██ ██    ██ 
██████  ███████ ██   ██ ██ ██   ██  ██████ 

*/

:root {
	--dark: #0a0a0a;
	--light: #fefefe;
	--player1: #ca89ef;
	--player2: #35e2bc;
}

body {
	background: var(--light);
	color: var(--dark);
	margin: 0;
	padding: 0;
	font-family: 'Helvetica Neue', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wrapper {
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	max-width: 1248px;
	margin: 0 auto;
}

@media (min-width: 740px) {
	.wrapper {
		padding: 0 40px;
	}
}

.dekiru {
	place-items: center;
	margin: 20vh auto auto;
}

.dekiru img {
	max-width: 320px;
	margin: 0 auto;
}

@media (min-width: 740px) {
	.dekiru img {
		max-width: 480px;
	}
}

.dekiru h1 {
	font-size: 1rem;
	margin-top: 50px;
}

.dekiru h1 strong {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0 0 0 0);
	word-wrap: normal !important;
}

p {
	margin-top: 0;
	margin-bottom: 0.25em;
}

@media (min-width: 740px) {
	p {
		margin-bottom: 1em;
	}
}

a {
	color: var(--dark);
	text-decoration: none;
	transition: all 0.5s ease-in-out;
}

a:hover {
	color: var(--player1);
	background: -webkit-linear-gradient(0deg, var(--player1), var(--player2));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hidden {
	transform: scale(0);
	position: absolute;
	top: 0;
	left: 0;
}

.title {
	margin: 30px 0;
	padding: 20px 0;
	border-bottom: 1px solid var(--dark);
	font-size: 1.2rem;
}

@media (min-width: 740px) {
	.title {
		font-size: 1.5rem;
	}
}

.clients {
	width: 100%;
	margin: 30px auto;
}

.client-list {
	margin: 0;
	padding: 0%;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-around;
}
@media (min-width: 740px) {
	.client-list {
		justify-content: space-between;
	}
}

.client {
	width: calc(100/2.3 * 1% );
	display: flex;
	justify-content: center;
	/* margin-bottom: 10px; */
}

@media (min-width: 740px) {
	.client {
		width: calc( calc(100/7 * 1%) - 30px);
	}
}

.client a {
	padding: 5px 20px;
	display: flex;
	align-items: center;
	position: relative;
}

@media (min-width: 740px) {
	.client a {
		padding: 0;
	}
}

.client a:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.client img {
	height: auto;
	max-height: 60px;
	width: 1000px;
	max-width: 100%;
	transition: all 0.5s ease-in-out;
}
.client img[src*='.png'],
.client img[src*='.webp'] {
	width: 100%;
}

.client a:hover img {
	opacity: 1;
}

.client a:hover:before {
	background-image: linear-gradient(to right, var(--player1), var(--player2));
	mix-blend-mode: lighten;
}

.footer {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	row-gap: 5px;
	border-top: 1px solid var(--dark);
	padding: 20px 0;
	font-size: 0.9rem
}

@media (min-width: 740px) {
	.footer p:nth-child(2) {
		margin-right: auto;
	}
}

@media (prefers-color-scheme: dark) {
	body {
		background: var(--dark);
		color: var(--light);
	}

	a {
		color: var(--light);
	}

	.dekiru svg,
	.dekiru img {
		filter: invert(94%) sepia(83%) saturate(1%) hue-rotate(307deg) brightness(108%) contrast(99%);
	}

	.title {
		border-color: var(--light);
	}

	.client svg,
	.client img {
		filter: invert(94%) sepia(83%) saturate(1%) hue-rotate(307deg) brightness(108%) contrast(99%);
	}

	.client a:hover:before {
		mix-blend-mode: darken;
	}

	.footer {
		border-color: var(--light);
	}
}