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

/* End reset */

html, body{
  height:100%;
}

body {
	background-color: #fcfcfc;
}

body, input {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 16px;
	line-height: 1.35;
	color: #1a1a1a;
}

h1 {
	font-weight: bold;
	font-size: 24px;
}

h2 {
	font-weight: bold;
	font-size: 20px;
}

a {
	color: #4040C0;
	text-decoration: none;
}

a:hover {
	color: #6060E0;
	text-decoration: underline;
	cursor: pointer;
}

pre, code {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
	font-size: 15px;
}

pre {
	padding-bottom: 10px;
	padding-left: 14px;
	padding-right: 14px;
	padding-top: 10px;
	overflow-x: scroll;
}

code {
	padding-top: 3px;
	padding-bottom: 3px;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #fcfcfc;
	color: #606aa1;
	border: 1px solid #f0f0f0;
	border-radius: 6px;	
	margin-left: 2px;
	margin-right: 2px;
}

.content {
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.logo {
	position: relative;
}

.header {
	position: absolute;
	bottom: 23px;
	left: 20px;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 10px;
	color: #fff;
	border-radius: 10px;
	border: 1px solid #999;
}

.header a {
	color: #fff;
	font-weight: bold;
}

.logo img {
	width: 99.5%;
	border-radius: 10px;
	border: 2px solid #f7f7f7;
}

.details {
	background-color: white;
	max-width: 658px;
    border-radius: 10px;
    border: 2px solid #f7f7f7;
	padding: 24px;
	margin-top: 14px;
}

.details h2 {
	margin-top: 16px;
	margin-bottom: 8px;
}

.details h2:first-of-type {
	margin-top: 0px;
}

blockquote {
	margin-top: 16px;
}

.details blockquote:first-of-type {
	margin-top: 0px;
}

blockquote ul {
	list-style: disc;
	margin-left: 20px;
	margin-top: 10px;
}

blockquote footer {
	font-style: italic;	
	padding-left: 10px;
	margin-top: 10px;
}

@media only screen and (max-width : 700px) {
	.content {
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 20px;
		margin-bottom: 20px;		
	}

	.header {
		font-size: 14px;
	}

	.header h1 {
		font-size: 18px;
	}

	.header {
		position: absolute;
		bottom: 14px;
		left: 10px;
	}
}

ul li ul {
	margin-left: 14px;
	font-style: italic;
}