/* CSS Reset */

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 */

body { /* Set page background color, font and text color */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(42, 44, 58);
    color: rgb(159, 169, 182);
}

header { /* Centered text title at the top of the page */
    width: auto;
    text-align: center;
    margin-top: 35px;
    font-size: 25px;
}

h2 { /* Section headers */
    width: auto;
    text-align: center;
    font-style: italic;
    font-size: 20px;
    margin-bottom: 25px;
}

section { /* Background for each section */
    margin-top: 50px;
    background-color: rgb(58, 65, 85);
    padding: 25px 25px 50px 25px;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    border: 5px;
    text-align: center;
}

article { /* Picture */
    margin: 25px 0px 25px 0px;
}

img {
    width: 75%;
}

footer { /* Centered footer at the bottom of the page */
    width: auto;
    text-align: center;
    margin: 50px 0px 25px 0px;
    background-image: url("images/stars.jpg");
    color: black;
    height: 50px;
}

#picture-label { /* Label for the picture */
    font-style: italic;
}

.footer-text { /* Text inside the footer */
    font-style: normal;
    font-size: 15px;
    color: red;
    padding-top: 15px;
}