/* Prise de focus */

:focus-visible {
    box-shadow: none !important;
    outline: black solid 2px !important;
}


/* Liens d'évitement */

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
}

.skip-link:focus {
    left: 0;
    top: 0;
    background-color: white;
    margin: 10px;
    padding: 5px;
    z-index: 999;
}

/* Général */

h1, h2, h3, h4, h5, h6 {
    font-family: "Fredericka the Great", serif;
    font-weight: 600;
    font-style: normal;
}

/* h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.8rem;
} */

a:not(nav) {
    color: black;
}

a:not(nav):hover {
    color: darkred;
    font-weight: bold;
}

a:not(nav):focus-visible {
    color: darkred;
    font-weight: bold;
}


/* Header */

.titre-header {
    font-family: "Fredericka the Great", serif;
    font-weight: 600;
    font-size: 7rem;
    font-style: normal;
}

.navbar a {
    font-size: 1.5rem;
    font-family: "Fredericka the Great", serif;
    color: black;
}
.navbar a:hover{
    font-size: 2rem;
    font-family: "Fredericka the Great", serif;
    color: darkred;
    text-decoration: underline;
}

/* ------------------ Media queries ------------------ */

/* version mobile */

@media only screen and (max-width: 600px) {
    .titre-header {
        font-family: "Fredericka the Great", serif;
        font-weight: 600;
        font-size: 3.5rem;
        font-style: normal;
    }

    .navbar{
        border: none !important;
    }

}