/* =========================================================
   RESILIENT VALIDATOR - Style.css V2
   Base commune du site
   ========================================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#040b15;
    color:#f5f7fa;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.6;
    overflow-x:hidden;
}

main{
    width:100%;
    min-height:calc(100vh - 102px);
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

button{
    font:inherit;
    cursor:pointer;
}

:root{
    --rv-bg:#040b15;
    --rv-panel:#091727;
    --rv-blue:#20b8ff;
    --rv-gold:#e0a62e;
    --rv-text:#f5f7fa;
    --rv-muted:#b8c7d7;
}

::selection{
    background:rgba(32,184,255,.35);
    color:#fff;
}
