* {
	padding: 0;
	margin: 0;
}
body {
	background-color: rgb(83, 172, 143);
}
.addNote {
	position: fixed;
	background-color: rgb(43, 43, 43);
	width: 6em;
	height: 2em;
	text-align: center;
	color: aliceblue;
	border-radius: 5px;
	margin: 10px 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 0;
	right: 0;
	font-size: 20px;
	cursor: pointer;
	z-index: 400;
}
.addNote:hover {
	background-color: rgb(31, 31, 31);
}
h1 {
	position: auto;
	text-align: center;
}
.container {
	display: flex;
	flex-wrap: wrap;
}

.notize {
	position: relative;
	margin: 10px 20px;
	width: 21em;
	height: 21em;
	border-radius: 1em;
	display: grid;
	grid-template-rows: 22px 60px auto;
	box-sizing: border-box;
	overflow: hidden;
}

.save,
.delete {
	width: 16px;
	height: 16px;
	border-radius: 3px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	position: auto;
	margin-right: 10px;
	margin-left: 10px;
}

.delete:hover,
.save:hover {
	background-color: black;
}

.buttons {
	background-color: rgb(12, 146, 183);
	white-space: nowrap;
	height: 20px;
	width: 98.8%;
	display: flex;
	flex-wrap: nowrap;
	padding: 2px;
	align-items: center;
	border-top-left-radius: 1em;
	border-top-right-radius: 1em;
}
img {
	width: 14px;
}
.title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	font-size: larger;
	font-weight: bold;
	background-color: rgb(126, 191, 237);
	padding-left: 20px;
	padding-top: 18px;
	vertical-align: center;
	border: 10px;
	resize: none;
	width: calc(21em - 25px);

	/* width: 400px; */
}

.notizen_body {
	background-color: rgb(224, 224, 147);
	border-bottom-left-radius: 1em;
	border-bottom-right-radius: 1em;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-size: large;
	padding: 5px;
	width: 18em;
	resize: none;
}

.title:focus,
.notizen_body:focus {
	outline: none;
}
.over_container {
	position: relative;
	width: 100%;
	height: 100%;
}

dialog::backdrop {
	background-image: linear-gradient(black, black);
	opacity: 0.55;
}
.dialog_class {
	left: 30%;
	top: 30%;
	width: 15em;
	height: 7em;
	text-align: center;
	padding-top: 3em;
}
#delete_ja,
#delete_nein {
	padding: 1em;
}
@media only screen and (min-width: 600px) {
	.addNote {
		width: 10em;
		height: 2em;
		font-size: xx-large;
	}
}
.anime {
	animation-name: my-animation;
	animation-duration: 0.15s;
	animation-direction: alternate;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}
@keyframes my-animation {
	from {
		left: 30em;
	}
	to {
		left: 0;
	}
}
