/**
 * Fichier  : /features/style/css/global.css
 * Fonction : style global du site
 */


/* ==================================================
   BODY
================================================== */

body {
    margin: 0;
    padding: 0;
}

body {
    background: #121212;
    background: radial-gradient(circle,rgba(18, 18, 18, 1) 70%, rgba(17, 17, 17, 1) 100%);
}


/* ==================================================
   RESET TYPOGRAPHIE
================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
hr {
    margin: 0;
}


/* ==================================================
   LIENS
================================================== */

a {
    text-decoration: none !important;
}


/* ==================================================
   FORMULAIRES
================================================== */

input,
textarea {
    outline: none;
}


/* ==================================================
   UTILITAIRES
================================================== */

.hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}