:root {
    --menuWidth: 250px;
    /* coverStyle can be 'cover' or 'contain' */
    --coverStyle: cover;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-family: Verdana, Arial, serif;
    font-size: 16px;
}

body {
    margin: 0;
    color: #eeeedd;
    font-size: 2rem;
    background: #303030;
}

a,
a:visited,
a:focus {
    color: beige;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
}

.titre {
    margin: 0;
    padding-left: 1rem;
    padding-top: 1rem;
    display: inline-block;
    font-size: 1.2rem;
    width: 150px;
    height: 140px;
    word-break: break-all;
    line-height: 1.6rem;
}

.titre img {
    width: 140px;
}

.menu {
    display: inline-block;
    vertical-align: top;
    line-height: 1.4rem;
    width: calc(100% - 165px);
    padding-top: 0.7rem;
}

.menu li {
    display: inline-block;
    vertical-align: middle;
    padding-left: 1rem;
    font-size: 0.8rem;
}

.entete {
    width: 100%;
    min-height: 150px;
    background-color: #303030;
}

.image {
    width: 100%;
    height: calc(100% - 150px);
}

.slider {
    height: 100%;
}

.slide {
    background-size: cover;
    background-position: center center;
    height: 100%;
}

.slick-list,
.slick-track {
    height: 100%;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    background-color: transparent;
    border: 2px solid hsla(177, 100%, 90%, 0.5);
    color: hsla(177, 100%, 90%, 0.5);
    font-size: 3rem;
    font-weight: 100;
    font-family: "Courier New", serif;
    padding: 0.4rem 0.9rem 0.4rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.slick-arrow:hover {
    background-color: hsla(177, 100%, 90%, 0.3);
}

.slick-prev {
    z-index: 1;
    left: 20px;
}

.slick-next {
    right: 20px;
}

.gallerie {
    width: 100%;
    height: calc(100% - 150px);
    overflow-y: auto;
}

.imagegallerie {
    width: 25%;
    height: 350px;
    background-image: url("https://a-time-paradox.com/img/presskit/A_Time_Paradox_02.jpg");
    background-size: var(--coverStyle);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #303030;
    float: left;
}

.imagetitre {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.imagetitre .description {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: Verdana, Arial, serif;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.imagetitre .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-color: #303030;
}

.imagetitre:hover .description {
    opacity: 1;
}
.imagetitre:hover .bg {
    opacity: 0.35;
}

.slider .imagetitre {
    background-color: transparent;
}

.contenu {
    text-align: center;
    color: white;
    overflow: auto;
    background-color: #303030;
}

.contenu img {
    max-width: 70%;
}

.date {
    color: lightgrey;
    font-style: italic;
    font-size: 1.5rem;
    padding: 1rem;
}

.biotitle {
    font-size: 3.5rem;
    margin-bottom: 4.5rem;
}

.biodescription {
    font-size: 1.25rem;
    color: white;
    max-width: 41rem;
    text-align: left;
    margin: auto;
    margin-top: 2rem;
}

.description {
  font-size: 1.5rem;
  color: white;
}

.parentcategory {
    font-style: italic;
}

.parentcategory + ul {
    display: inline;
}

.contact {
    color: lightgray;
    clear: both;
    display: block;
    font-size: 1rem;
    padding: 2rem 1rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .entete {
        float: left;
        height: 100%;
        width: var(--menuWidth);
    }

    .menu {
        line-height: 1.3rem;
        width: 100%;
    }

    .menu li {
        display: block;
        vertical-align: middle;
        padding-bottom: 0.6rem;
    }

    .menu ul {
        display: block;
    }

    .parentcategory + ul {
        padding-top: 0.7rem
    }

    .titre {
        display: block;
    }

    .image {
        float: left;
        height: 100%;
        width: calc(100% - var(--menuWidth));
    }

    .gallerie {
        height: 100%;
        width: calc(100% - var(--menuWidth));
        float: left;
    }
}
