@font-face {
    font-family: Valence;
    src: url(../ressources/Valence-Medium.woff);
}

:root {
    --mainColor: rgb(255, 63, 15);
    --generalMargin: 1%;
    --threadWidth: .1vw;

    --headFontSize: 1.7vw;
    --wraperFontSize: 1.2vw;
    --paraFontSize: 1.2vw;
}
::selection {
    background-color: none;
    color: var(--mainColor);
  }

#sandwich{
    display: none;
}

body {
    padding-top: 5vw !important;
    font-family: Valence !important;
    line-height: 1;
    overflow-x: hidden;
}

h1,
h2 {
    font-size: var(--headFontSize) !important;
    display: inline;
}

#head {
    z-index: 10000;
    position: fixed;
    height: auto;
    width: calc(100vw - calc(2*var(--generalMargin)));
    left: 0px;
    top: 0px;
    display: flex;
    padding: 1%;
    color: var(--mainColor);
    background-color: white;

    /* border-bottom: var(--threadWidth) solid var(--mainColor); */
}


#header-left {
    display: inline;
    width: auto;
}

#header-right {
    display: flex;
}

#header-right h2{
    margin-left: 1.5em;
}

#head a {
    color: var(--mainColor);
    text-decoration: none;
    transition: color .3s;
}

#head a:hover {
    color: black !important;
}
p{
    font-size: var(--paraFontSize) !important;
}
/*---------------------------------------------------------------------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}