@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);

#typewriter {
	position: relative;
	top: 1rem;
	max-width: 400px; /* o la larghezza che vuoi */
	margin: 0 auto;
	color: aliceblue;
	font-size: 90px;
	height: max-content;
	text-align: center;

	overflow: hidden;
	/* togli width: min-content */
}

.cursor {
	display: inline-block; /* per sicurezza */
	width: 2px; /* larghezza cursore */
	height: 1em; /* altezza linea */
	vertical-align: bottom;
	background-color: rgba(255, 255, 255, 0.75);
	animation: blinkTextCursor 1s steps(2, start) infinite;
	border: none; /* niente bordo, uso background-color */
}

@keyframes blinkTextCursor {
	0%,
	50% {
		background-color: rgba(255, 255, 255, 0.75);
	}
	51%,
	100% {
		background-color: transparent;
	}
}
