ul {
	list-style: none;
}

li::marker {
	display: none;
	content: "";
}

body {
	margin: 0px;
	min-height: 100vh;
	max-height: 100vh;
	min-width: 100vw;
	max-width: 100vw;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: system-ui;
	background: var(--background-color);
	color: var(--text-color);
}

main {
	margin: auto;
	width: fit-content;
	height: fit-content;
	flex: 1;
}

h1 {
	font-family: system-ui;
	font-style: italic;
	font-size: 48pt;
	background: linear-gradient(1.5rad, var(--secondary-color), var(--accent-color));
	background-clip: text;
	-webkit-background-clip: text;
	color: transparent;
	background-size: 300% 100%;
	font-weight: 800;
	animation: gradient-move 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
	user-select: none;
	padding: 4px;
}

@keyframes gradient-move {
	0% { background-position: 300% 50%; }
	70% { background-position: 150% 50%; }
	100% { background-position: 0% 50%; }
}

ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 2rem;
	padding: 0px;
}

li {
	display: flex;
	justify-content: center;
	align-items: center;
}

li a {
	width: 100%;
}

.search-type button {
	font-size: 2rem;
	outline: none;
	border: 2px solid var(--text-color);
	width: 100%;
	padding: 1rem;
	background: none;
	font-weight: 500;
	color: var(--text-color);
}

footer {
	margin-bottom: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

a {
	color: unset;
}

button.lang {
	font-size: 1.4rem;
	min-width: 3rem;
	max-width: 3rem;
	outline: none;
	border: 2px solid var(--text-color);
	background: none;
	color: var(--text-color);
}