:root {
    --page-background-color: rgba(10,10,10,255)
}

.center {
    text-align: center;
    margin: 10px;
    padding: 5px 10px 10px 5px
}

.mainbody {
    margin: 0px;
    background: var(--page-background-color);
    color: white;
    font-family: 'Courier New', monospace;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 120px;
    margin: auto;
}

.links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	margin: auto;
	font-size: 1.25em;
}

hr {
    color: white;
    background: white;
    border: none;
    height: 2px;
    width: 300px;
}

a {
	padding: 1px 5px;
	font-weight: normal;
	color: #000000;
	background-color: #00000000;
	text-decoration: none;
	transition: color 0.25s ease, font-weight 0s linear;
	position: relative;
	transform: perspective(1px) translateZ(0);
}

a:hover {
	color: #ffffff;
	font-weight: bold;
}

a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
	background-color: #ffffff;
	transform: scaleY(1) skew(0deg);
	transform-origin: 0% 50%;
	transition: transform 0.25s ease-out;
	filter: drop-shadow(0 0 5px white);
}

a:hover:before {
	transform: scaleY(0) skew(-10deg);
}

img {
	max-width: inherit;
}
