:root {
    --cassiopeia-color-primary: #079c40;   /* colore primario */
    --cassiopeia-color-secondary:#056704; /* colore secondario */
    --cassiopeia-color-hover: #00ff00;     /* colore hover */
}

/* Stile per le pagine articolo */
.item-page {
    background-color: #F8F8F8;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

/* Font Roboto applicato al body */
body {
    font-family: 'Roboto', sans-serif;
}
.header {
    background: linear-gradient(to right, #056704, #079c40);
}
/* Centra la colonna che contiene titolo e tagline */
.header .grid-child:first-of-type {
    display: flex;
    justify-content: center;
}

/* Centra titolo e tagline */
.header .navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Centra il testo del titolo */
.header .navbar-brand .brand-logo span {
    display: block;
    text-align: center;
}

/* Centra la tagline */
.header .navbar-brand .site-description {
    text-align: center;
    margin-top: 5px;
}


