html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; vertical-align: baseline; }


/* style.css */
body {
    font-family: 'Palatino';
	font-family: "Consolas", "Courier New", monospace;
    text-rendering: optimizeLegibility;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    padding: 15px;
    color: #000;
}

blockquote {
    margin: 1em 2em;
    padding: 0.75em 1.25em;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    font-style: italic;
    color: #555;
}

blockquote p {
    margin: 0;
}


header {
    display:block;
    position:relative;
    padding: 0px 0px 20px 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    display: inline;
    font-size:50px;
    font-weight:bold;
    color:black;
}

header h1 a {
    color:black;
}

header h1 small {
    font-size: 14px;
}


body h2 a {
    text-decoration:none;
	color: white;
}

.read-more {
    font-weight:bold;
}

body h2 {
    margin-bottom:5px;
    font-size:26px;
    padding: 1px; /* Aggiunge spazio interno per una migliore estetica */
	background-color: #FF7F00;
    color: white; /* Testo bianco per contrasto */
    display: inline; /* Adatta lo sfondo alla lunghezza del testo */
}

.blockquote {
    margin: 1em 2em;
    padding: 0.75em 1.25em;
    background-color: #f9f9f9;
    border-left: 4px solid #ccc;
    font-style: italic;
    color: #555;
}

.blockquote p {
    margin: 0;
}


.content h1 {
    font-size:18px;
    font-weight:bold;
    color:black;
	background-color: white;
	padding: 0px;
}

.content h2 {
    font-size:18px;
    font-weight:bold;
    color:black;
	background-color: white;
	padding: 0px;
}

.excerpt h1 {
    font-size:17px;
    font-weight:bold;
    color:black;
	background-color: white;
	padding: 0px;
}

.excerpt h2 {
    font-size:18px;
    font-weight:bold;
    color:black;
	background-color: white;
	padding: 0px;
}

li {
    list-style-type: none;
}


a {
    text-decoration:none;
}

a:hover {
    text-decoration: underline;
}

.excerpt {
	font-family: "Consolas", "Courier New", monospace;
	font-size: 18px;
	margin-bottom: 20px;
}

.content {
	font-family: "Consolas", "Courier New", monospace;
	font-size: 17px;
	margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.comment {
    margin-bottom: 20px;
    padding: 10px;
	font-size: 17px;
    background: #f9f9f9;
}

.comment-header {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.author {
    font-weight: bold;
}

.comment-form div {
    margin-bottom: 10px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 5px;
}

.comment-form textarea {
    height: 100px;
}

.stats {
    color: #666;
    font-size: 0.8em;
    margin-top: 20px;
}

/* Stile per il codice inline */
code {
    background-color: #333; /* Sfondo scuro */
    color: #f8f8f2;         /* Testo chiaro */
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 17px;
    font-family: "Consolas", "Monaco", "Lucida Console", monospace;
}

/* Stile per i blocchi di codice */
pre {
    background-color: #1e1e1e; /* Nero/grigio scuro */
    color: #dcdcdc;            /* Testo chiaro */
    padding: 1em;
    border-radius: 5px;
    font-family: "Consolas", "Monaco", "Lucida Console", monospace;
    font-size: 1em;
    line-height: 1.5;
    overflow-x: auto; /* Permette lo scorrimento orizzontale */
    border: 1px solid #444; /* Bordo leggero */
}

/* Rimuove lo stile aggiuntivo del tag <code> dentro <pre> */
pre code {
    background: none;
    padding: 0;
    font-size: inherit;
    color: inherit;
}

/* Aggiunge una leggera ombreggiatura */
pre {
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

