css> # main.css

body # <page> {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

#nav ul {
    font-size: relative;
    list-style:none;
    color: yellow;
    font-size: x-large;
    text-align: center;
    padding: 20px 0;
}
ul {
    color: yellow;
    text-align: center;
    padding: 20px 0;
    margin-top: 150px;
}

ul li {
list-style: none;
color: yellow;
}
ul li a {
    color: yellow;

}
ul li a {color: yellow;}
blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/*my code*/



h1 {
	font-family: Arial, "Times New Roman";
	text-align: center;
	padding-top: 25px;
	color: #8b0000;
	font-size: 40px;
}

p { 
	font-size: 12px;
	color: yellow;
	text-align: center;
	padding: 20px;
	margin-top: 450px;
}

body#page           { /* Page Body */
	background-color: #c0c0c0;
	background-image: url(../images/me_collage_dec_2015.jpg);
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
	overflow        : auto;
	}

/* Mobile: fill the screen and increase text size */
@media (max-width: 768px) {
	body#page {
		background-size: cover;
		background-position: center center;
	}
	h1 {
		font-size: 3.5em !important;
		text-align: center !important;
	}
	nav {
		text-align: center !important;
	}
	nav ul {
		position: static !important;
		text-align: center !important;
	}
	nav ul li {
		margin: 1.2em 0 !important;
	}
	nav ul li a {
		font-size: 2.2em !important;
		padding: 0.75em 1.5em !important;
	}
	p {
		font-size: 1.6em !important;
		text-align: center !important;
	}
}
	