/* Style for the centered div */
div.abox {
	max-width: 800px;
	padding: 20px;
	margin: 50px auto;
	border: 2px solid black;
	border-radius: 10px;
	background-color: #f9f9f9;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	/* Use flexbox for layout */
	align-items: center;
	/* Center items vertically */
	gap: 20px;
	/* Space between image and text */
	position: relative;
	/* Allow absolute positioning inside */
	background-image: url('../images/green-small.jpg');
}

/* Style for the profile picture */
img.profile-pic {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid #ccc;
	object-fit: cover;
}

/* Style for the text content */
div.text-content {
	text-align: left;
	flex: 1;
	/* Allow the text content to expand */
	position: relative;
	/* Create a positioning context */
        line-height: 1.8;
}

/* Style for the statistics-content */
div.statistics-content {
	position: absolute;
	/* Position it within the text-content div */
	bottom: -20px;
	/* Stick to the bottom */
	right: 4px;
	/* Align to the right */
	font-size: 0.9em;
	/* Slightly smaller font size */
##	background-color: #f0f0f0;
	/* Light background for distinction */
	padding: 5px 10px;
#	border: 1px solid #000;
	/* Add some padding for better readability */
	border-radius: 5px;
	/* Rounded edges for a modern look */
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
	/* Subtle shadow */
}

/* Style for the body */
body {
	font-family: Gentium, sans-serif;
	background-color: #eaeaea;
	margin: 0;
	padding: 0;
	font-size: 24px;
	background-image: url('../images/sfondo.jpg');
}

h2 {
	margin-bottom: 10px;
}

p {
	margin-top: 0;
	margin-bottom: 0;
}

a:link,
a:visited {
	#color: darkblue;
	color: #151B54;
	text-decoration: none;
	padding: 6px;
	border: 2px solid #dedede;
}

a:hover,
a:active {
	border: 2px solid #010101;
}


