/* *{
    outline: 1px solid red;
}  */

html{
    font-size: 62.5%; 
    /* 1rem = 10px se basant sur une base 16px */
}

body{
    font-size: 1.6rem;
}
::-moz-selection{
    color: #03080F;
    background-color: #45ABA5;
}
::selection{
    color:  #03080F;
    background-color: #45ABA5;
}

/* Image replacement technique 2012 H5BP  - https://css-tricks.com/the-image-replacement-museum/ */
.ir {
    font: 0/0 a;
    color: transparent;
    border: 0;
    text-shadow: none;
  }
  

@media print{
    a[href]:not([href^='#'])::after{
        content:'('attr(href)')';
    }
}