body {
	background-color: #131316;
	color: #fff;
	font-family: "Courier New", Courier, monospace;
	padding: 0;
	margin: 0;
}

section {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 100vh;
}

h1 {
	font-size: 3rem;
	margin: 0;
	padding: 0;
	text-align: center;
}

a {
	color: inherit;
	text-decoration: none;
}

p {
	max-width: 60vw;
	text-align: center;
}

.hidden {
	opacity: 0;
	filter: blur(5px);
	transform: translateX(-100vmin);
	transition: all 1s;
}

@media (prefers-reduced-motion) {
	.hidden {
		transition: none;
	}
}

.show {
	opacity: 1;
	filter: blur(0);
	transform: translateX(0%);
}

.image-list {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	align-items: center;
}

li:hover {
	cursor: pointer;
	color: #0091ff;
	filter: hue-rotate(180deg);
	transition: filter 2s;
}

.selected {
	color: orangered;
}

.fractal-image {
	display: block;
	width: 0;
	margin-top: 2%;
	aspect-ratio: 1;
	margin-inline: auto;
	border: 0px solid white;
	border-radius: 5px;
	transition: all 0.4s;
}

/* .image-list:has(.selected) ~ a .fractal-image,  */
#wikilink .active {
	width: 60vmin; 
	border-width: 1px;
	transition: all 0.4s;
}



.explorer {
	width: 70vmin;
	height: 70vmin;
	border: 1px solid white;
	border-radius: 5px;
	background-image: url("./images/mandel.png");
	background-size: cover;
}

.explorer::after {
	display: block;
	text-align: center;
	content: "Click Me!";
}

.mandelbrot {
	width: inherit;
	height: inherit;
	cursor: zoom-in;
}
