* {
	margin:0;
	padding:0;
/*	font-family:"Helvetica Neue", Helvetica, Sans-serif;*/
/*	word-spacing:-2px;*/
}

h1 {
	font-size:40px;
	font-weight:bold;
	color:#191919;
	-webkit-font-smoothing: antialiased;
}

h2 {
	font-weight:normal;
	font-size:20px;
	color:#888;
	padding:5px 0;
}

.mssg {
	background:#221402;
	color:#FFF;
	position: relative;
	top: 3px;
	left: 0px;
	width: 190px;
	padding: 0px;
	transition: top 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
	overflow: hidden;
	box-sizing: border-box;
/*
	background:#181818;
	color:#FFF;
	position: absolute;
	top: -250px;
	left: 0;
	width: 100%;
	height: 250px;
	padding: 20px;
	transition: top 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
	overflow: hidden;
	box-sizing: border-box;
*/
}

.mssg h1 {
	color:#FFF;
}

#toggle {
	position:absolute;
	appearance:none;
	cursor:pointer;
	left:-100%;
	top:-100%;
}

#toggle + label {
	box-sizing: border-box; border-radius: 7px; background: #3B2D1B; box-shadow: 0 0 0 0 rgba(0, 100, 120, 0.5); text-align: left;
	/*
	position:absolute;
	cursor:pointer;
	padding:10px;
	background: #26ae90;
	width: 100px;
	border-radius: 3px;
	padding: 8px 10px;
	color: #FFF;
	line-height:20px;
	font-size:12px;
	text-align:center;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
	margin:20px 50px;
	transition:all 500ms ease;
	*/
}
#toggle + label:after {
	/*content:"Open"*/
}

.container {
	transition: margin 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);
	padding:5em 3em;
}

#toggle:checked ~ .mssg {
	top: 0;
}

#toggle:checked ~ .container {
	margin-top: 250px;
}

#toggle:checked + label {
	box-sizing: border-box; border-radius: 7px; background: #3B2D1B; padding: 5px 92px 5px 0px; box-shadow: 0 0 0 0 rgba(0, 100, 120, 0.5); text-align: left;
}

#toggle:checked + label:after {
	/*content:"Close"*/
}

