html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Noto Serif', serif;
}

body { 
	background: #fff;
}

#logo {
	display: block;
	position: absolute;
	width: 300px;
	height: 300px;
	left: calc(50% - 150px);
	top: calc(45% - 150px);
	background: #fff url(preview.png) no-repeat center center; 
	background-size: contain;
	border: 10px solid #000;
	color: #000000;
}

#logo.small {
	position: relative;
	width: 150px;
	height: 150px;
	top: auto;
	left: auto;
	border-width: 5px;
}

#logo #name {
	position: absolute;
	bottom: -115px;
	width: 300px;
	text-align: center;
	font-size: 40px;
	line-height: 30px;
}
#logo #name span {
	display: block;
	font-size: 40%;
	line-height: normal;
	margin-top: 5%;
}
#logo.small #name {
	bottom: 30px;
	width: 300px;
	left: 155px;
}

@media screen and (max-width: 480px) {
	#logo {
		top: 40px;
		left: auto;
		width: 200px;
		height: 200px;
		position: relative;
		margin: 0 auto;
	}
	#name {
		width: 200px;
		bottom: -70px;
		font-size: 30px;
		line-height: 25px;
	}
}

#content {
	padding: 20px 20px 20px 120px;
	max-width: 1024px;
	margin: 0 auto;
}


nav {
	display: inline-block;
	position: fixed;
	padding: 100px 20px 800px 100px;
	background: #000;
	transform: rotate(10deg);
	top: -100px;
	left: -140px;
	font-size: 14px;
	text-align: right;
}
nav ul { 
	list-style: none;
	padding: 0;
	margin: 0;
}
nav ul li { 
	line-height: 200%; 
}
nav ul li a { 
	color: #999;
	text-decoration: none;
}
nav ul li a:hover,
nav ul li a:active,
nav ul li a.active {
	color: #fff;
}
