body {
	touch-action: manipulation;
	font-family: 'Roboto Serif', serif;
	font-weight: 200;
	background: linear-gradient(60deg, teal, purple) fixed;
	background-color: purple;
	color: whitesmoke;
	margin: 0px;
	height: 100vh;
	width: 100vw;
	overflow: hidden;

	cursor: pointer;
}

*:not(input) {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input {
	-webkit-touch-callout: default;
	-webkit-user-select: text;
	-moz-user-select: text;
	-ms-user-select: text;
	user-select: text;
}

#aaa {
	z-index: 1;
	top: 0;
	left: 0;
	margin: 5px;
	position: fixed;
	height: 100vh;
	width: 100vw;
	opacity: 20%;

	font-size: 24px;
	word-wrap: break-word;
	word-break: break-all;
}

::placeholder {
	color: rgba(245, 245, 245, 0.4);
	opacity: 1;
}

.blurred {
	background: linear-gradient(60deg, rgba(245, 245, 245, 0.05), rgba(128, 128, 128, 0.05));
	border: 1px rgba(245, 245, 245, 0.1) solid;
	border-radius: 69px;

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

#container {
	z-index: 2;
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
	margin-top: 20%;

	padding: 25px;
	cursor: move;
}

#scream {
	z-index: 3;
	width: 180px;
	color: whitesmoke;
	
	padding: 20px;

	font-family: 'Roboto Serif', serif;
	font-size: 32px;
	font-weight: 200;
}

#save {
	z-index: 3;
	padding: 15px;
	margin-left: 25px;
	height: 70px;
	width: 70px;
	color: rgba(245, 245, 245, 0.4);

	text-align: center;
	font-family: 'Roboto Serif', serif;
	font-size: 18px;
	font-weight: 200;
}