:root {
	--pw-man: #2f58a8;
	--pw-sub: #e71e26;
	--pw-ttl: #333333;
	--pw-txt: #424242;
	--pw-bg: #eee;
	--pw-wit: #fff;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	background-color: var(--pw-man);
	font-size: 62.5%;
}
body {
	background-color: var(--pw-bg);
	font-size: 1.25em;
	min-height: 100vh;
}
h1 {
	color: var(--pw-sub);
}
p {
	color: var(--pw-man);
}
header {
	text-align: center;
}
main {
	padding: 1rem;
}
.note {
	padding: 1rem;
	margin: 3em auto;
	background-color: var(--pw-wit);
	border-radius: 1rem;
}
.note p {
	padding: 5px;
}
.the-note {
	white-space: pre-wrap;
	padding: 5px;
	width: 100%;
	height: 120px;
	resize: none;
	border: none;
	background-color: var(--pw-wit);
	outline-color: var(--pw-wit);
}
#write {
	max-width: 360px;
	margin: 2em auto;
}
#write textarea {
	width: 100%;
	height: 100px;
	resize: none;
	padding: 5px;
	box-shadow: inset 0 0 5px #333;
	border-radius: 1rem;
	border: none;
	outline:none;
}
#count {
}
#add {
	float: right;
}
button {
	border-none: none;
	padding: 0.5rem;
	margin: 0.5rem;
	background-color: var(--pw-man);
	color: var(--pw-wit);
	border: none;
}
footer {
	background-color: var(--pw-wit);
	height: 40px;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	padding: 5px;
	text-align: center;
}
#toast {
	visibility: hidden;
	width: 260px;
	margin: auto;
	background: rgba(0, 0, 0, 0.9);
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	top: auto;
	right: 0;
	bottom: 50px;
	left: 0;
}
#toast.show {
	visibility: visible;
}
