* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    display: grid;
    grid-template-columns: 50% 50%;
    line-height: 22px;
    /*text-transform: lowercase;*/
}

/***        GAUCHE        ***/

#gauche {
    position: fixed;
    overflow: auto;
    overflow-x: hidden;
    width: 50%;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 7px;
    padding-right: 7px;
}

.list-item {
    line-height: 22px;
}

.list-item:hover {
    display: block;
    line-height: 21px;
}

span {
    display: inline-block;
}

.year {
    width: 15%;
    white-space: nowrap;
}

.title {
    width: 49%;
    white-space: nowrap;
}

.category {
    width: 34%;
    text-align: end;
    float: right;
    white-space: nowrap;
}

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

.js-title:hover {
    cursor: pointer;
    border-bottom: 1px solid black;
}

.js-title {
    border-bottom: none;
}

.js-title.is-active {
    line-height: 21px;
    border-bottom: 1px solid black;
}


/***        DROITE         ***/

#droite {
    /*overflow: auto;
    overflow-x: hidden;*/
    position: absolute;
    padding-top: 4px;
    margin-bottom: -6px;
    width: 50%;
    left: 50%;
}

#about {
    padding-bottom: 20px;
}

header {
    display: none;
}

#menu {
    position: fixed;
    top: 4px;
    right: 7px;
    display: none;
}

.js-image {
    position: relative;
}

.js-image:hover {
    cursor: pointer;
}

.js-image.is-active {
}

img {
    width: 100%;
}

video {
    width: 100%;
}

.js-text {
    display: none;
}

.js-text.is-active {
    display: block;
    position: absolute;
    z-index: 3;
    top: 0px;
    padding-top: 4px;
    padding-left: 7px;
    padding-right: 7px;
    padding-bottom: 4px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.9;
}

.sticky {
    position: -webkit-sticky; 
    position: sticky ; 
    top: 4px;
    padding-bottom: 4px;
}



/***        MOBILE         ***/

@media screen and (max-width: 800px) {
    /***        MENU         ***/
    #gauche {
        display: none;
        width: 100%;
        height: 100%;
        background-color: #fff;
        opacity: 0.9;
    }
    #gauche.is-active {
        display: block;
        z-index: 4;
    }
    #menu {
        display: block;
        z-index: 4;
    }
    #menu:hover {
        display: block;
        cursor: pointer;
    }
    header {
        display: block;
        position: fixed;
        width: 100%;
        padding-left: 7px;
        z-index: 5;
    }
    .nom {
        width: 15%;
    }
    .prenom {
        width: 30%;
    }
    .nom:hover {
        width: 15%;
        cursor: pointer;
    }
    .prenom:hover {
        width: 30%;
        cursor: pointer;
    }
    .header-desktop{
        display: none;
    }

    .sticky {
        position: -webkit-sticky; 
        position: sticky ; 
        top: 48px;
        padding-bottom: 4px;
    }
    
    /***       CONTENU        ***/
    
    #droite{
        width: 100%;
        left: 0px;
        top: 0px;
    }
    #about {
        padding-bottom: 7px;
        padding-top: 42px;
        padding-left: 7px;
        padding-right: 7px;
    }
}