body {
	background-image: url('wall1.jpg');
	font-family: Trebuchet MS;
	font-size: 16px;
	overflow: hidden;
}

.pn_wrapper {
	position: absolute;
	width: 336px;
	height: 336px;
	user-select: none;
	z-index: 1;
}

.papernote {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('papernote_st_ns.png');
	background-size: cover;
	background-repeat: no-repeat;
	content: '';
	box-shadow: 0 0 15px 15px inset rgba(0, 0, 0, 0.05), 0 0 19px 5px rgba(0, 0, 0, 0.05);
}

.papernote_shadow {
	position: absolute;
	width: 100px;
	height: 100px;
	left: 6px;
    bottom: 8px;
	background-color: transparent;
	box-shadow: 0 0 36px black;
	transform: rotate(-1deg);
}

.text {
	position: absolute;
	top:  50%;
	left: 50%;
	transform: translate(-50%, -50.6%);
	width: calc(336px - 74px);
	color: white;
	font-size: 16px;
	line-height: 19px;
	user-select: none;
	cursor: default;
	-moz-user-select: none;
	-ms-user-select: none;
}

.text span:nth-of-type(1) {
	color: #e0e0e0;
	border-bottom: 1px dotted #eee;
}

.text span:nth-of-type(2) {
	color: #e2e2e2;
}

.text span:nth-of-type(2) a {
	color: #e0e0e0;
}

.text span:nth-of-type(2) a:hover {
	color: #aaa;
}

.icon {
	width: 28px;
	height: 28px;
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 1;
	cursor: pointer;
}

.icon:hover {
	filter: invert(20%);
}

.close_icon {
	background-image: url('close_icon.png');
	position: absolute;
	right: 20px;
	top: 20px;
}

.text_curver {
	float: left;
	height: 2px;
	width: 1.5px; 
}

.text_close_spacer {
	float: right;
	height: 15px;
	width: 9.5px; 
}

.menu_wrapper {
	position: absolute;
	right: 12px;
	top: 8px;
}

.menu_item {
	font-weight: bold;
	border-bottom: 1px dotted #000;
    text-decoration: none;
	font-size: 21px;
	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
}

.menu_icon {
	float: left;
	width: calc(2vw + 36px);
	height: calc(2vw + 36px);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 5px;
}

.menu_icon:hover {
	filter: brightness(80%);
	cursor: pointer;
	transition: ease 0.5s;
}

.icon_plus {
	background-image: url('icon_plus.png');
}

.icon_send {
	background-image: url('icon_send.png');
}

.icon_question {
	background-image: url('icon_question.png');
}

.central_msg {
	width: 80vw;
	max-width: 800px;
	background: linear-gradient(45deg, #4a4043, #626180);
	color: white;
	font-size: 17px;
	padding: 20px;
	border: 1px solid #aaa;
	border-radius: 8px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -53%);
	z-index: 10000;
	display: none;
}

textarea {
	width: 98%;
	padding: 2px;
	height: 10vh;
	font-family: inherit;
	font-size: 16.5px;
}

.bigclick {
	color: #eee;
	border-bottom: 1px dotted #eee;
	display: inline;
	font-size: 110%;
	cursor: pointer;
}

.bigclick:hover {
	opacity: 0.8;
}

@media only screen and (max-width: 600px) {
	.central_msg {
		font-size: 13px;
	}
	body {
		font-size: 15.6px;
	}
	.pn_wrapper {
		zoom: 0.75;
	}
}


