/* CSS RESET */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* END OF CSS RESET*/



html {
    /* To make use of full height of page*/
    height: 100%;
    margin: 0;
	background-image: linear-gradient(rgb(10, 0, 9), rgb(6, 0, 5), rgb(0, 0, 0));
}

body {
	padding: 2%;
	background-image: linear-gradient(rgb(0, 0, 0), rgb(6, 0, 5), rgb(10, 0, 9));
	height: 100%;
}

body .main-region {
	display: grid;
	place-items: center;
	align-items: center;
}

.mod {
	width: 50%;
	display: relative;
	margin-top: 5%;
}

.mod h1 {
	display: flex;
	font-size: 2em;
	justify-content: center;
	padding: 1%;
}

.mod h1 a {
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
	color:rgba(192, 0, 192, 0.644);
}

.mod h1 a:hover {
	color:rgb(255, 109, 221);
	transform: scale(125%);
}

.mod p {
	font-family: 'Courier New', Courier, monospace;
	font-size: 1.25em;
	color:rgba(188, 38, 168, 0.729);
	padding: 1%;
	line-height: 125%;
}

#homebutton {
	font-family: 'Courier New', Courier, monospace;
	text-decoration: none;
	font-size: 1.2em;
	border: 1px solid;
	color: rgb(191, 140, 238);
	border-color: purple;
	padding: 1% 2%;
}

#homebutton:hover {
	background-color: rgba(128, 0, 128, 0.326);
}

.mod {
	justify-content: center;
	width: 50%;
}
