* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: black;
	color: white;
	font-family: "courier new", monospace;
	display: flex;
	justify-content: center;
	padding: 80px 20px;
	transition: background .1s, color .2s;
}

code {
	font-weight: bold;
}

.container {
	width: 600px;
	max-width: 100%;
}

.logo {
	width: 120px;
	margin-bottom: 16px;
	transition: transform .2s;
	cursor: pointer;
	filter: invert(1);
}

.logo:hover {
	transform: rotate(-4deg);
}

.title {
	font-size: 25px;
	padding: 6px 10px;
	margin-bottom: 24px;
}

.description {
	margin-bottom: 28px;
	font-size: 15.2px;
}

.links {
	font-size: 15.2px;
}

.links h2 {
	margin-bottom: 20px;
	font-size: 19px;
}

.link-item {
	margin-bottom: 14px;
	line-height: 1.4;
}

.link-item a,
.link-item a:visited {
	color: white;
	font-weight: bold;
	text-decoration: underline;
}

a,
a:visited {
	color: white;
	text-decoration: underline;
}

a:hover {
	background: white;
	color: black;
}

.link-item a:hover {
	background: white;
	color: black;
}

.copyable {
	cursor: pointer;
	padding: 2px 4px;
	margin-left: -4px;
	transition: background .1s, color .1s;
}

.copyable:hover {
	background: white;
	color: black;
}

.footer {
	margin-top: 60px;
	padding-top: 16px;
	font-size: 11px;
	letter-spacing: 1px;
	opacity: 0.4;
	line-height: 1.8;
}

::selection {
	background: white;
	color: black;
}

body.tore {
	background: white;
	color: black;
}

body.tore a,
body.tore a:visited {
	color: black;
}

body.tore a:hover {
	background: black;
	color: white;
}

body.tore .link-item a:hover {
	background: black;
	color: white;
}

body.tore .logo {
	filter: none;
}

body.tore ::selection {
	background: black;
	color: white;
}

body.tore .copyable:hover {
	background: black;
	color: white;
}