/* --------------------------------------------------------------------------------------------------------------------- */
/* CONTENT MAIN + SIDEBAR */
/* --------------------------------------------------------------------------------------------------------------------- */

#content
{
	margin: 1em auto 0;
}

#content.content_grid
{
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-areas:
		"subnav subnav"
		"main sidebar";
}

#main
{
	grid-area: main;
	margin: 10px;
}

#sidebar
{
	grid-area: sidebar;
	margin: 10px 10px 10px 0px;
	justify-self: end;
}

.aside
{
	min-width: 5rem;
	margin-bottom: 10px;
}


/* --------------------------------------------------------------------------------------------------------------------- */
/* HOMEPAGE */
/* --------------------------------------------------------------------------------------------------------------------- */

div.titlu
{
	background-image: url(../img/background/cetate.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	width: 100%;
	height: auto;
}

div.titlu h1
{
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	font-style: italic;
	line-height: 6rem;
	text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}
