:root {
  --link-color: #88c0d0;
  --hover-color: #bf616a;
}

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


/* custom */
body {
  background:#f0f0f0;
  font:500 13px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color:#d8dee9;
}

.svg-icon {
  width: 3em;
  height: 3em;
  margin: 10px 5px 0px 0px;
}

.svg-icon path {
  fill: var(--link-color);
}

.svg-icon path:hover {
  fill: var(--hover-color);
}

.card {
	position:absolute;
	top:50%;
	left:50%;
	margin:-100px 0 0 -16%;
	width:420px;
	height:220px;
	border-radius:4px;
	background:#3b4252;
	padding: 20px;
}
.card a {
	color:var(--link-color);
	text-decoration:none;
	font-weight:bold;
	}
.card a:hover {
	color:var(--hover-color);
}

.card h1 {
	font-size:18px;
	line-height:38px;
	font-weight:700;
	color:#e5e9f0;
	padding:0;
}
.card p {
	font-size:14px;
	line-height:22px;
	font-weight:400;
	text-wrap: wrap;
}

@media (max-width:640px) {

.card {
	position: absolute;
	width:100%;
	height:100%;
	margin:0;
	border-radius:0;
	top:0;
	left:0;
	right: 0;
	box-sizing: border-box;
}



