@font-face {
    font-family: 'Baskervville';
    src: url(../font/Baskervville-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Baskervville';
    src: url(../font/Baskervville-Bold.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Baskervville';
    src: url(../font/Baskervville-BoldItalic.ttf) format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Baskervville';
    src: url(../font/Baskervville-Italic.ttf) format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'BaskervvilleSC';
    src: url(../font/BaskervvilleSC-Regular.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BaskervvilleSC';
    src: url(../font/BaskervvilleSC-Bold.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
}

html,
body {
    color: white;
    font-family: 'Baskervville';
    font-weight: normal;
    font-variant-caps: normal;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    /* couvre tout l’écran même au scroll */
    inset: 0;
    /* top/right/bottom/left: 0 */
    z-index: -1;
}

body {
    z-index: -2;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    text-align: center;

}

.navWrapper {
    position: fixed;
    width: 100%;
}

.navbar {
    padding: 20px 100px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.9);
}

.logoNav {
    text-align: left;
}

.logoNav img {
    width: 8em;
    padding: 10% 0;
}

.catNav {
    align-content: center;
    font-family: 'BaskervvilleSC';
    font-size: 1.3em;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.wrapCatNav {
    align-content: center;
}

.dbNav {
    width: 100%;
    height: 100%;
    align-content: center;
}

.dbContNav {
    /*caché de base*/
    display: none;
    position: absolute;
    /*ne dépasse pas le bouton de base*/
    overflow: hidden;
    min-width: 100%;
    max-width: 100%;
    z-index: 1;
    background-color: var(--color-hover);

}

.dbContNav a {
    color: white;
    display: flex;
    text-align: left;
    padding: 10px;
    position: relative;
    text-decoration: none;
}

.dbNav:hover .dbContNav {
    display: block;
}

.container {
    padding: 60px 0 40px 0;
    margin: 0 auto 0 auto;
    max-width: 675px;
}

section {
    margin-bottom: 20px;
}

h1 {
    font-family: 'BaskervvilleSC';
    font-weight: normal;
    font-size: 5em;
    line-height: 1em;
}

p {
    text-align: justify;
    text-indent: 2em;
    size: 1.2em;
}