*
{
	margin: 0;
	padding: 0;
	background: #ffffff;
	font-size: 1.02em;
	color: #000000;
	font-family: "Fragment Mono", monospace;
	line-height: 1.39em;
}

.title
{
	width: 28em;
}


.all
{
	opacity: 0%;
}

a
{
	text-decoration: none;
	background: none;
}

.br
{
	line-height: 1em;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.br2
{
	line-height: 2em;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.artwork
{
	width: 19em;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.link-container
{
	display: inline-block;
	padding: 1em;
	background: #b9dfff;
	width: 17em;
	border-radius: 1.02em;
	text-align: left;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.link-container:hover
{
	background: #a2cef5;
}

.link
{
	padding: 0.1em;
	background: #ffffff;
}

.link:hover
{
	background: #eaeaea;
}

::selection
{
	background: #b8e9ff;
	color: #000000;
}

::-moz-selection
{
	background: #b8e9ff;
	color: #000000;
}

.slideshow
{
	position: relative;
	width: 19em;
	height: 19em;
	overflow: hidden;
}

.slideshow img
{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	opacity: 0;
	animation: cycle 8s infinite;
}

.slideshow img:nth-child(1) { animation-delay: 0s; }
.slideshow img:nth-child(2) { animation-delay: 2s; }
.slideshow img:nth-child(3) { animation-delay: 4s; }
.slideshow img:nth-child(4) { animation-delay: 6s; }

@keyframes cycle
{
	0%    { opacity: 1; }
	24.9% { opacity: 1; }
	25%   { opacity: 0; }
	100%  { opacity: 0; }
}