html {
	width: 100%;
	height: 100%;

	font-family: "Arial", sans-serif;
	font-size: 18px;

	color: #ebebeb;
	background-color: #2d2d2d;
}

body {
	margin: 0px;
	padding: 0px;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;

	background-image: url("/assets/images/background.jpg");
	background-position: center;
	background-size: cover;
}

h1, h2, a, p {
	padding: 0px;
	margin: 0px;

	color: inherit;

	font-size: inherit;
	font-weight: normal;
	text-decoration: none;
}

main {
	margin: auto;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 800px;
	height: 250px;

	background-color: #4c4c4ca6;

	border-radius: 2.5px;

	box-sizing: border-box;
	box-shadow: 0px 0px 10px #1b1b1b;

	cursor: default;
}

main #photo {
	max-width: 100%;
	max-height: 100%;

	border-top-left-radius: 2.5px;
	border-bottom-left-radius: 2.5px;
}

main #content {
	padding: 1rem;

	width: 100%;
	max-height: 100%;

	box-sizing: border-box;

	overflow-y: auto;
}

main #content h1#name {
	font-family: "Bebas";
	font-size: 2.25rem;
}

main #content h2#title {
	margin-top: -0.4rem;

	font-family: "Pacifico";
	font-size: 1.125rem;
}

main #content p#bio {
	margin-top: 1rem;

	font-family: "Raleway";
	font-size: 0.75rem;
}

main #content #links {
	margin-top: 1.25rem;

	display: flex;
	justify-content: flex-start;
	align-items: center;
}

main #content #links a img {
	display: block;

	width: 1.5rem;
	height: 1.5rem;
}

main #content #links a {
	margin-right: 0.5rem;
}

main #content #links a:last-child {
	margin-right: 0rem;
}

main #content #links a img {
	transition: transform 0.3s;
}

main #content #links a img:hover {
	transform: scale(1.1);
}
