/* ==================== COMMON.CSS =====================
   Ce fichier regroupe les règles de base et communes
   pour toutes les résolutions.
   ===================================================== */

/* 1) FONT-FACE */
@font-face {
    font-family: 'CaviarDreams_Bold';
    src: url('police/CaviarDreams_Bold.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

/* 2) RESET ET BASE */
* {
    margin: 0;
    padding: 0;
}
body {
    width: 100%;
    font-family: 'CaviarDreams_Bold', sans-serif;
    /* Empêche les barres de défilement horizontales */
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}