/* ==================== RESET CSS ==================== */
/* Reset universale e normalizzazione base */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: calc(16px * var(--font-size, 1));
}

body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    transition: none;
    font-size: calc(1rem * var(--font-size, 1));
}

/* Stilizzazione dropdown nativi */
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}
