/* === RESET === */

/* 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;
}
html {
	box-sizing: border-box;
	font-size: 100%;
}

*, *::before, *::after {
	vertical-align: baseline;
	font-family: inherit;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

@font-face {
  font-family: 'ABC-Bold'; /* Name you choose for the font */
  src: url('/fonts/abc-diatype-bold.woff2') format('woff2'),
       url('/fonts/abc-diatype-bold.woff') format('woff'),
       url('/fonts/abc-diatype-bold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps prevent render-blocking issues */
}

@font-face {
  font-family: 'ABC-Regular'; /* Name you choose for the font */
  src: url('/fonts/abc-diatype-regular.woff2') format('woff2'),
       url('/fonts/abc-diatype-regular.woff') format('woff'),
       url('/fonts/abc-diatype-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; /* Helps prevent render-blocking issues */
}

body {
	color: #888;
	line-height: 1.5;
	color: #ffffff;
	background-color: #332FFF;
	padding: 80px 24px;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

section {
    padding-bottom: 48px;
}
 
 h1{
    font-family: 'ABC-Regular';
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
 }
 
  h2{
    font-family: 'ABC-Bold';
    font-weight: 700;
    font-size: 20px;
 }
 
 ul {
  list-style-type: none;
}

li {
      list-style-type: none;
      padding-bottom: 16px;
      padding-top: 16px;
}

h1 li{
    padding-bottom: 8px;
}
a:link, a:visited a:hover a:active{
  color: #ffffff;
}
