* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', 'Garamond', "consolas", sans-serif;
	font-size: 1 rem;
}

body {
    color: #383840;

}

.topbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 25px;
	transition: 0.3s;

}


.menu {
	display: flex;
	justify-content: center;
	flex-direction: row;
	align-items: center;
	z-index: 1;
	transition: 0.5s;
}

.menu li{
	list-style-type: none;
}

.menu li a{
		text-decoration: none;
		color:darkslateblue;
		display: block;
		padding: 15px 10px;
		font-size: 18px;
		line-height: 1;
		transition: 0.3s;
}

.menu li a:hover{
	box-shadow: 0 -5px 0px bisque inset,
	820px 0 0 rgba(255, 228, 196, 0.2) inset;

}


.topbar a:hover{
		color:bisque;
}

.topbar h1 {
	text-align: left;
	margin-left: 2.5rem;
	margin-top: .2rem;
	color:darkslateblue;
}

article h1{
	font-size: clamp(1.5rem, 2.5vw, 3rem);
	margin-bottom: 1rem;
}

.l-sidebar {
	float: left; 
	width: 25%; 
	height:100%; 
	margin:0;
}

.links{
	list-style-type: none;
	display: block;
	line-height: 2em;
}

article {
  max-width: 800px;
  padding: 20px 30px 30px 20px;
  margin: auto;
  text-align: justify;
  line-height: 1.5em;
}

.articles {
	margin: 0 auto;
	max-width: 800px;
	display:flex;
	justify-content: center; /* Centers horizontally */
	align-items: center; 
	text-align: justify;
}

.articles-list {
	width: 100%; text-align: left;
}

.footer {
	width: 100%;
	height: 60px;
	}


.links li > a {
	padding: 10px;
    color: #385170;
	text-decoration: none;
}

.links li > a:hover {
	color: #6A9C89;
}


.p-article {
	margin-bottom: 10px;
}

#whoami-card {
	margin: auto;
	text-align:right;
}

.l-sidebar h1{
	text-align: right;
	color:#92b39a;
	margin-bottom:10px;
}

.content h2{
	text-align:center;

}



#main-content {
	height: 100%; 
	width: 70%; 
	float: right;
}

.article-card {
	height: 110px;
	display: grid;
	flex-direction: column;

	margin: 20px auto;
	text-align:center;
	padding: 1em;
}

.article-card > .article-card-header {
	background-color: #92b39a;
	text-align:left;
	color:#385170;
	padding: .1em;
}

.article-card > .article-card-body {
	padding:1em;
	text-align:left;
display:inline-block;
}

.article-card > .article-card-footer {
	text-align:left;
	font-size:small;
	padding:1em;
	display:inline-block;
}

@media screen and (max-width: 780px) {

	body {
		padding: 0;
		margin: 0;
		background-color: #e4e3e3;
	}

	.content{
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction:column;
		flex-wrap:nowrap;
		align-items: center;
	}

	.l-sidebar{

		width: 100%;
		display: flex;
		flex-direction: column;
		margin: 0;
		padding: 0;
	}

	.l-sidebar h1{
		font-size:1.5rem;
		text-align: center;
	}

	#whoami-card {

	}

	#whoami-card ul {
		display: none;
	}

	#main-content {
		font-size: 1.2em;
		width: 100%;
	
	}

	.topbar{
		background-color: #92b39a;

	}

	.topbar {
		margin: 0;
		padding: 0;
		display: flex;
		flex-direction:row;
	}

	.menu {
		min-width: 100%;

		justify-items: center;
	}

	.topbar h1{
		display:none;
	}

	.menu li{

		text-align: center;
	}
	
	.menu li a{
		color: #383840;
	}

	footer {
		display: none;
	}

	.citazione {
		background:#92b39a;
		font-size: 1.1em;
	}



}