/* General */

@font-face {
  font-family: "Redaction";
  src: url("webfontsredaction/Redaction_35-Regular.woff2");
}

body{
    font-family: "Redaction";
    margin: 0;
}

a{
    color: inherit;
    text-decoration: none;
}

*{
    box-sizing: border-box;
}

/* Header */

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    position: fixed;
    width: 100%;
    background: linear-gradient(#FFF 75%, #ffffff00 100%);
    padding: 10px 10px 20px 10px;
    gap: 1em;
    z-index: 10;
}

header h1{
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}

header .liens{
    display: flex;
    font-size: 18px;
    gap: 1em;
}

/* écrans plus petis que 768px */

@media (max-width: 768px) {

    header{
        justify-content: flex-start;
    }

}

/* écrans plus grands que 768px */

@media (min-width: 768px){

    header{
        justify-content: space-between;
    }

}