	/* whole document styles */
	html * {
        font-size: 1em;
        font-family: "Courier New", Arial, Tahoma;
		background-color: #3c3c3c;
		}
	
	/* what dat div do */
    .boxify {
        border: solid 2px #6d6d6d;
        border-radius: 5px;
        padding: 40px;
		max-width: 1000px;
        margin-bottom: 20px;
	}
	
	/* Body specific overrides */
	body {
	    color: #ffffff;
		}
		
	/* fancy H2 */
	h2 {
		font-family: "Brush Script MT", "Courier New", Arial, Tahoma;
		font-size: 2em;
		text-align:center;
		}
	
	/* Link color nonsense, because links need love too */
	a:link {
		color: red;
		}

	a:visited {
		color: lightgray;
		}

	a:hover {
		color: hotpink;
		}

	a:active {
		color: lightblue;
		}
		
	/* Reference materials for when i have to edit this again*/
	/* in line emojis: https://www.w3schools.com/html/html_emojis.asp and https://www.w3schools.com/charsets/ref_emoji.asp */
	/* font sizes and wtf is 1em for a size: https://www.w3.org/Style/Examples/007/units.en.html#units */
	/* websafe fonts: https://www.w3schools.com/css/css_font_websafe.asp */
	/* header modifications: https://stackoverflow.com/questions/65445798/how-to-change-font-family-of-the-headers-like-h2 */
	/* text centering: https://stackoverflow.com/questions/841730/centering-text-in-html */
	/* global default font and colors: https://stackoverflow.com/questions/7025756/how-to-apply-global-font-to-whole-html-document */
	/* colors: https://www.w3schools.com/cssref/pr_text_color.php */
	/* link colors: https://www.w3schools.com/html/html_links_colors.asp */