/* 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*/
/* This element is used to design and format the paragraphs.*/
.paragraph {
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 16px;
    padding: 15px;
    text-align: center;
    background-color: grey;
    width: 300px;
    margin :auto;
    border: lightgray 5px solid;
    border-radius: 15px;
    word-spacing: 5px;
}
/* This element is used to design the subtitles.*/
.SubTitles {
    color: white;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 16px;
    padding: 15px;
    text-align: center;
    background-color: grey;
    width: 50px;
    margin :auto;
    margin-top: 20px;
    margin-bottom: 20px;
    border: lightgray 5px solid;
    border-radius: 15px;
}
/* This element is used to put the border around the website. */
#wholewebsite {
    background-color: rgb(55, 53, 53);
    border-right: 15px lightgrey double ;
    border-left: 15px lightgrey double ;
}

    

/* This element is used to size and center pictures.*/
.pic{
    
    margin-left:15%;
    margin-right:15%;
    width: 70%;
    border: lightgray 5px solid;
    color:rgb(55, 53, 53);
    border-radius: 15px;
}
/* This element is used to design and put a picture behind the title.*/
header {
    background-image: url('Images/background.webp');
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    justify-content: center;
    color: white;
    border-bottom: 5px lightgray Solid;
    text-align: center;
    font-size: 20px;
}