@media (prefers-color-scheme: dark) {
	body {
		background-color: #000000;
		color: #ffffff;
	}

	a {
		color: #ffffff;
		text-decoration: none;
	}

	form input, form textarea {
		background-color: rgb(32, 32, 32);
		color: #ffffff;
		border: none;
	}

	#separator {
		height: 100%;
		border-right: 1px solid #ffffff;
	}
}

@media (prefers-color-scheme: light) {
	body {
		background-color: #ffffff;
		color: #000000;
	}

	a {
		color: #000000;
		text-decoration: none;
	}

	form input, form textarea {
		background-color: #ffffff;
		color: #000000;
		border: 1px solid #000000;
	}

	#separator {
		height: 100%;
		border-right: 1px solid #000000;
	}
}

body {
	font-family: 'IBM Plex Mono', monospace;
	margin: 0px;
	padding: 0px;
}

h1 {
	margin-left: 16px;
	font-weight: lighter;
	font-style: normal;
}

#content {
	background-color: transparent;
	width: clamp(20%, 500px, 90%);
	margin: auto;
	vertical-align: middle;
}

.panel {
	background-color: rgba(64, 64, 64, 0.0);
	border-radius: 10px;
	margin: 32px 0 32px 0;
	vertical-align: middle;
}

#profile, #links {
	height: 16%;
	display: flex;
	flex-direction: row;
}

#form {
	padding: 20px;
}



a:hover {
	color: #808080;
}

#avatar {
	border-radius: 50%;
	height: 100px
}

.profile-panel {
	width: calc(50% - 1px);
	position: relative;
	height: 100%;
}

.profile-panel img {
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%)
}

.profile-panel ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-70%, -50%)
}

.link-panel {
	width: calc(50% - 1px);
	position: relative;
	height: 100%;
}

p {
	
	margin: 0px;
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%)
}

.link-panel ul {
	margin: 0px;
	padding: 0px;
	position: absolute;
	top: 50%;
	left: 50%;
    transform: translate(-50%, -50%)
}

li {
	margin: 4px 0 4px 0;
}

form input, form textarea {
	margin: 8px 0 8px 0;
}

#formMessage {
	width: 100%;
	height: 8em;
}

#formSubmit {
	padding: 10px;
}