:root > * {
    --md-footer-bg-color: #607d8b; /* blue-grey footer */
    --md-footer-fg-color: #ffffff; /* testo bianco footer */
    --md-footer-bg-color--dark: #607d8b;
    --md-footer-fg-color--lighter: #ffffff;
    --md-footer-fg-color--light: #ffffff;
    --mdc-typography-headline6-font-family: 'Be Vietnam', sans-serif;
    --mdc-typography-font-family: 'Be Vietnam', sans-serif;
    --md-typeset-a-color: #00ffe0; /* colore link personalizzato */
}

/* Nasconde la scrollbar */
.hide-scroll-bar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.hide-scroll-bar::-webkit-scrollbar {
    display: none;
}

/* Bottone primario */
.md-typeset .md-button--primary {
    border-width: 1px;
    border-color: rgb(219, 219, 219);
    border-radius: 4px;
    color: #ffffff; /* testo bottone */
    background-color: #455a64; /* blue-grey scuro bottone */
}

/* Contenuto delle card */
.cardContent {
    padding: 16px;
    font-size: 16px;
    color: #ffffff; /* testo bianco nelle card */
    background-color: #607d8b; /* sfondo card blue-grey */
    border-radius: 6px;
}

/* Titoli h2 */
.md-typeset h2 {
    font-weight: 500;
    color: #ffffff; /* colore titoli */
}

/* Body2 */
.mdc-typography--body2 {
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
}

/* Sfondo principale della pagina */
.md-main, .md-content {
    background-color: #607d8b !important; /* blue-grey */
    color: #ffffff !important; /* testo bianco */
}

/* Footer */
.md-footer {
    background-color: #607d8b !important;
    color: #ffffff !important;
}
/* Titolo ENJOY centrato con fade-in */
.title-enjoy {
    text-align: center;
    color: #ffffff; /* titolo bianco */
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-top: 40px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);

    /* Fade-in */
    opacity: 0;
    animation: fadeInTitle 2s ease-in forwards;
}

@keyframes fadeInTitle {
    from { opacity: 0; }
    to { opacity: 1; }
}
