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

/* stylesheet */

:root {
    --marker-colour: rgb(213, 130, 144);
    --marker-hover-colour: rgb(244, 145, 155);
    --link-colour: rgb(245, 166, 179);
    --link-visited-colour: rgb(178, 142, 197);
    --link-hover-colour: rgb(255, 207, 215);
    --link-active-colour: rgb(214, 99, 118);
}

body {
    font-family: "arial", "helvetica", sans-serif;
    font-size: 0.9em;
    letter-spacing: 2%;
    line-height: 1.5em;
    padding: 3em;
}

body, #wrap {
    min-height: calc(100vh - 6em);
}

#wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.col {
    height: min-content;
}

p, ul {
    margin-bottom: 1em;
}

ul li {
    list-style-type: disc;
}

li {
    margin-bottom: 1em;
    margin-left: 0.85em;
}

li::marker {
    color: var(--marker-colour);
}

li:hover::marker {
    color: var(--marker-hover-colour);
}

a, a:link {
    color: var(--link-colour);
}

a:visited {
    color: var(--link-visited-colour);
}

a:hover {
    color: var(--link-hover-colour);
}

a:active {
    color: var(--link-active-colour);
}