html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#root {
	width: 100%;
	height: 100%;
}

.underline {
	text-decoration: underline;
}

.line-through {
	text-decoration: line-through;
}

.font-bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.editor-paragraph {
	margin: 0;

}

.pulse {
	animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 20px rgba(0, 0, 0, 0.2);
	}
	100% {
		box-shadow: 0 0 0 2px rgba(0, 0, 0, 0);
	}
}

