html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/*Suppression du flash bleu sur mobile*/
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
  outline: none;
}

body {
    background-color: black;
    padding: 0px;
    margin: 0px;
    font-family: 'Roboto', sans-serif;
    user-select: none;

    overflow-x: hidden;
    overflow-y: auto;

    padding-bottom: env(safe-area-inset-bottom);
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

p, li {
    color: white;
}

h1 {
    margin-top: 0px;
    color: white;
}

hr {
    border: solid 0.1px white;
    margin-top: 40px;
}

.text--center {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
}

.iconArrow {
    fill: white;
    width: 20px;
    height: 20px;
}

.linkable {
    color: white;
    font-weight: bold;
    text-decoration: none;
    outline: 0;
}

.linkable:hover {
    text-decoration: underline;
}