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 {background-color: white;
    margin: 10%;
    padding: 10%;
    border: 10px dotted cornflowerblue;
    border-radius: 250px;
    font-family:'Courier New', Courier, monospace
}

img {float: left;
    padding: 30px;
    margin: 10px;
    width: 150px;
    max-width: 100%;
}

h2 {padding: 10px;
    text-align: center;
    color: cornflowerblue;
    font-size: 50px;
}

hr {color: cornflowerblue;
    border: dotted;
    margin-top: 50px;
    margin-bottom: 50px;
}

h3 {padding: 20px;
    text-align: left;
    color: cornflowerblue;
    font-size: 32px;
}

dl {padding: 1em 2em;
}

dt {color: black;
    font-size: 20px;
}

dd { color: black;
    
}

dd.annotation {color: green;
    text-align: wrap;

}

footer {padding: 30px;
    text-align: center;
}


div.content {display: block;
    margin-top: 50px;
    margin-bottom: 100px;
}

div.container {display: grid;
    grid-template: auto;
    margin: 25px;
}