html {
	font-size: 18pt;
	font-family: 'Mali', sans-serif;
	color: #FFFFFF;
	font-weight: 200;
}
		
*, *:before, *:after {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: underline;
}
	
a:hover {
	text-decoration: none;	
}

:root {
	--background-height: 100vh;
}
body:before {	
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: var(--background-height);
	background-attachment: scroll;
	background-image: linear-gradient(45deg, rgba(191, 117, 135, 0.639) 0%, rgba(214, 255, 255, 0.631) 100%), url('images/bg.jpg');
	background-position: 0% 0%, bottom;
	background-repeat: repeat, no-repeat;
	background-size: cover, cover;
	background-color: #FFFFFF;
	box-sizing: border-box;
}	
	
#wrapper {
	display: flex;
	justify-content: center;
	padding: 3.5rem 3.5rem 3.5rem 3.5rem;
}

#main_body {
	position: relative;
	max-width: 100%;
	width: 38rem;
	background-color: rgba(44, 42, 54, 0.8);
	box-shadow: 0rem 3rem 3.125rem 0rem rgba(44, 42, 54, 0.451);
	border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
	padding: 3.75rem 3rem;
}

#header_block {
	text-align: center;
	color: #FFFFFF;
	letter-spacing: 0.125rem;
	width: calc(100% + 0.125rem);
	font-size: 1em;
	line-height: 2.25;
	font-weight: 300;
}

#avatar_image {
	width: 6rem;
	border-radius: 100%;
	border-style: solid;
	border-color: #FFFFFF;
	border-width: 2px;
}

.divider {
	margin-bottom: 1.75rem;
	margin-top: 1.75rem;
	width: 32rem;
	border-bottom: none;
	border-left: none;
	border-right: none;
	border-top: solid 1px rgba(255, 255, 255, 0.18);
}

#commission_info_block h1 {
	text-align: center;
	color: #FFFFFF;
	font-size: 1em;
	font-weight: 400;
	letter-spacing: 0.025rem;
	line-height: 1.75;
}

#commission_info_block h2 {
	color: #FA8072;
	text-align: center;
	font-size: 1em;
	font-weight: 400;
	letter-spacing: 0.025rem;
	line-height: 1.75;
}

.commission_example_block {
	display:flex;
	justify-content: space-between;
}

.commission_example_block div:nth-child(1) {
	padding-right: 20px;
}

.commission_example_block div:nth-child(2) {
	padding-left: 20px;
}

.commission_example_block h1 {
	margin-top: 0;
	text-align: center;
	font-size: 1em;
	font-weight: 400;
	letter-spacing: 0.025rem;
	line-height: 1.75;
}

.commission_example_block img {
	width: 15rem;
	border-radius: 0.375rem;
	border-style: solid;
	border-color: #FFFFFF;
	border-width: 5px;
}

#footer {
	color: rgba(255, 255, 255, 0.349);
	font-family: 'Source Sans Pro', sans-serif;
	letter-spacing: 0.025rem;
	width: calc(100% + 0.025rem);
	font-size: 0.75em;
	line-height: 1.75;
	font-weight: 200;
	text-align: center;
}

#links_block {
	display: flex;
	justify-content: center;
	margin-bottom: -1em;
}

#links_block .link {
    display: flex;
	border: solid 1px #FFFFFF;
	border-radius: 100%;
	width: 4em;
	height: 4em;
	margin: 0.625rem;
	align-items: center;
	justify-content: center;
}

#links_block a svg {
	fill: #FFFFFF;
	display: flex;
	width: 60%;
    height: 60%;
}

#links_block .link:hover {
	border-color: #FFCCB0 !important;
}

#links_block a:hover svg {
	fill: #FFCCB0 !important;
	border-color: #FFCCB0 !important;
}

@media (max-width: 800px) {
	html {
		font-size: 10pt;
	}
	
	#wrapper {
		padding: 0.5rem 0.5rem 0.5rem 0.5rem;
	}
	
	.commission_example_block {
		display:block;
	}
	
	.commission_example_block img {
		width: 100%;
	}
	
	.commission_example_block div:nth-child(1) {
		padding-right: 0;
	}

	.commission_example_block div:nth-child(2) {
		padding-top: 2em;
		padding-left: 0;
	}
}