/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

html {
	height: 100%;
	font-size: 18px;
	box-sizing: border-box;
	font-family: sans-serif;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 1rem;
	background: #fff;
	border: none;
	transition: all 200ms ease-in-out;
}
:focus {
	outline: none !important;
}
::placeholder {
  font-style: italic;
}
small {
	font-size: 0.81rem;
  font-weight: normal;
}
body {
  line-height: 1.4;
	padding: 2rem 1rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-height: 100%;
	gap: 1rem;
	color: #141414;
}
big {
  display: inline-block;
  padding-right: 0.1em;
  font-size: 1.6em;
  font-weight: bold;
}
textarea {
	padding: 0.7rem 1rem;
  padding-right: 3em;
	height: 8em;
	resize: none;
	border-radius: 6px;
	background: #efefef;
	font-size: 0.81rem;
	width: 100%;
  line-height: 1.3;
}
textarea:focus {
	background: #eaeaea;
}
article {
	max-width: 100%;
	width: 520px;
	height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 781px) {
	article {
		height: 100px;
	}
}
article p {
	max-height: 100%;
 	overflow: auto;
	font-style: italic;
	margin-left: 1rem;
  margin-right: 1rem;
	hyphens: auto;
	word-break: break-word;
	padding-bottom: 0.5rem;
  font-weight: bold;
}
article p i {
  font-weight: normal;
}
form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 520px;
	max-width: 100%;
	gap: 1rem;
	position: relative;
}
input {
  font-weight: bold;
	padding: 0.3rem 0.8rem 0.41rem 0.85rem;
	background: #141414;
	color: #fcfbfb;
	cursor: pointer;
	justify-self: flex-end;
	border-radius: 6px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
	z-index: 10;
}
input:focus,
input:hover {
	background: #343434;
}

article p:not(:has(i)) {
  overflow: hidden;
  white-space: pre;
  animation: typewriter 1.75s steps(50, end);
}

article p big {
  overflow: hidden;
  white-space: pre;
  animation: typewriter 0.25s steps(10, end);
}

article p i {
  animation: appear 0.75s;
  display: inline-block;
  padding-right: 0.1em;
}

@keyframes typewriter {
  from { max-width: 0 }
  to { max-width: 100% }
}

@keyframes appear {
  0% { opacity: 0 }
  25% { opacity: 0 }
  100% { opacity: 1 }
}