/* ---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 RESET--- */
/* ---VARIABLES--- */

:root {
    --dk-blue: #042940;
    --md-green: #9fc131;
    --bt-green: #dbf227;

    --font: "Unbounded", Arial, sans-serif;

}

/* ---END VARIABLES--- */
/* ---STYLES--- */

body {
    display: flex;
    justify-content: center;
    margin: 1rem;
    padding: 2rem;
    background-color: var(--dk-blue); 

    /* BG PATTERN */
    opacity: 0.8;
    background-image: radial-gradient(#005c53 0.5px, #042940 0.5px);
    background-size: 10px 10px;
}

h1 {
    font-size: 4rem;
    letter-spacing: 5px;
    color: var(--bt-green);
    text-shadow: 2px 2px 3px var(--md-green);

    /* ---Just For Fun & Extra Practice--- */
    font-family: var(--font);
    font-weight: bold;
    text-transform: uppercase;
    border: 7px double var(--bt-green);
    background-color: rgba(0, 0, 0, .5);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 5px 5px 1px black;
}



