* {
	box-sizing: border-box;
}
body {
	background-color: #ffffff;
	padding: 0;
	margin: 0;

	font-family: 'Roboto', sans-serif;
	color:#404040;
	font-size: 22px;
	font-weight: 100;
}
a {
	text-decoration: none;
	font-weight: 300;
	color:#213D46;
}
.main {
	padding: 0;
	margin: 0;
	width: 100vw;
	min-height: 100vh;
	display: grid;
	grid-template-columns: 50% 50%;
}
.title {
	background-color: #213D46; /* #2B292A; */
	margin: 0;
	height: 100%;
	text-align: right;
	box-shadow: inset 0 0 50px #1D353C; /*#1b1a1b; */

	flex-flow: column wrap;
	display: flex;
	justify-content:center;

	position: relative;
}
.title h1 {
	margin: 5em 10%;
}
.title h1 img {
	width: 100%;
	max-width: 800px;
}
.detail {
	margin: 0;
	height: 100%;
	background-color: #ffffff;
	background-image: url(../img/raster.png);
	box-shadow: inset 0 0 50px #cccccc;

	flex-flow: column wrap;
	display: flex;
	justify-content:center;
}
.content {
	padding:4em;
}
.content p {
	font-style: normal;
	color: #000;
	font-size: 1.2em;
	font-weight: 300;
}
.sprite {
	position: absolute;
	bottom: 0;
	left: 15%;
}
@keyframes blink {
	50% {
		background-color: #000;
		color: #fff;
	}
}
.cursor {
	animation: blink 1s step-start 0s infinite;
}
.content:hover .cursor {
	animation: none;
}
.content ul {
	list-style-type: none;
	padding-left: 1.2rem;
}
.content a .cursor{
	animation: none;
}
.content a:hover .cursor {
	animation: blink 1s step-start 0s infinite;
}
@media (max-width:1399px){
	.main{
		grid-template-columns: 1fr;
	}
	.title {
		text-align: center;
		height: auto;
		display: block;
	}
	.detail {
		height: auto;
	}
}
@media (max-width:719px){
	.content {
		padding:2em;
	}
}