body
{
	min-height: 100vh;
	height: auto;
	background-image: linear-gradient(to bottom right, #2A83DD, #6A61A5);
}

.ctext
{
	color: white;
	text-align: center;
}

/* Source: https://stackoverflow.com/a/62359101 */
.decorated-text
{
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center; /* making vertical centerign of all children */
}

.decorated-text::after, .decorated-text::before
{
	content: '';
	flex: 1 1 auto; /* the first digint is 'flex-grow: 1', helps elemet to occupy all free space */ 
	border-bottom: solid 1px #fff;
}

.decorated-text p
{
	flex: 0 1 auto; /* the first digint is flex-grow: 0 */ 
	padding: 0 10px 0 10px;
	font-variant-caps: small-caps;
}