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;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* include everything above in every css file */

body {
    margin: 10%;
    background-color: dodgerblue;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

div.content {
  padding: 5%;
  width: 80%;
  background-color: white;
  margin-top: 25px;
  margin-bottom: 25px;
  margin-right: 25px;
}

h2 { color: white;
    font-size: 50px;
    text-align: left;
    margin-bottom: 5%;
}

h3 { color: white;
    font-size: 35px;
    text-align: left;
    margin-top: 5%;
    margin-bottom: 5%;
}

h4 { color: white;
    font-size: 25px;
    text-align: left;
}

h5 { color: white;
    font-size: 20px;
    text-align: left;
    margin-bottom: 5%;
}

p { color: black;
    font-size: 18px;
    text-align: justify;
    margin: 2%;
}

.image-container {
  width: 100%;
  margin-bottom: 25px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

ul { list-style-type: disc;
    margin: 2%;
}

p.footer { color: white;
    font-size: 16px;
    text-align: left;
    margin-top: 5%;
    margin-left: 0;
}

p.script { color: white;
    font-size: 16px;
    text-align: left;
    margin: 0;
}