/* COMMON */


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

#container {
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.prevent-select {
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

/* INDEX */

#main-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    vertical-align: auto;
    position: absolute;
}

#enter-btn {
    border-radius: 10px;
    background-color: #2c356a;
    border: none;
    color: #ffffff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2vw;
    margin: 4px 2px;
    cursor: pointer;
    margin-top: 40px;
}

#title #name {
    font-weight: 100;
    font-size: 8vw;
    line-height: 8vw;
    text-shadow: #000000 4px 5px 6px;
}

#title #lastname {
    font-weight: 600;
    font-size: 13vw;
    color: #2c356a;
    text-shadow: none;
    text-shadow: none;
}

/* HEADER */

#header {
    background: #2c356a;
    height: 50px;
    box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
    z-index: 666;
    line-height: 50px;
}

#header #logo {
    float: left;
    width: 50px;
    height: 50px;
    padding-top: 5px;
    margin-left: 10px;
    cursor: pointer;
}

#header ul {
    margin-left: 60px;
    height: 50px;
}

#header ul li {
    display: inline;
    padding: 0 20px;
    color: #ffffff;
    cursor: pointer;
    float: left;
    height: 50px;
}

#header ul li.selected {
    background: #3f4e9e;
    box-shadow: inset 5px 5px 12px -5px #000000;

}

#header ul li:hover {
    text-decoration: underline;
}

#header ul li .material-symbols-outlined {
    position: relative;
    top: 6px;
    margin-right: 10px;
}

#header ul li span:nth-child(2) {
    display: inline;
}

@media (max-width: 540px) {

    #header ul li span:nth-child(2) {
        display: none;
    }

    #header ul li .material-symbols-outlined {
        position: relative;
        top: 12px;
        margin-right: 0;
    }

}

/* MAIN */

#content {
    background: transparent;
    height: calc(100% - 70px);
    padding: 10px;
    z-index: 1;
}

.artist {
    text-align: justify;
    margin: 0;
}

/* A mettre sur le parent pour éviter tout débordement de l'effet float */
.artist:before,
.artist:after {
    content: "";
    display: block;
    clear: both;
}

#img-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 600px;
}

#img-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    max-width: 600px;
}

.artist>span {
    line-height: 28px;
}

.artist #text-right,
.artist #text-left {
    line-height: 28px;
}

/* GALLERY */

/* #art-text {
    text-decoration: underline;
} */

.gallery {
    display: flex;
    padding: 2px;
    transition: 0.3s;
}

.gallery:hover .gallery__image {
    /* filter: grayscale(1); */
}

.gallery__column {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.gallery__link {
    margin: 2px;
    overflow: hidden;
}

.gallery__link:hover .gallery__image {
    /* filter: grayscale(0); */
}

.gallery__link:hover .gallery__caption {
    opacity: 1;
}

.gallery__thumb {
    position: relative;
}

.gallery__image {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.gallery__image:hover {
    transform: scale(1.1);
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 25px 15px 15px;
    width: 100%;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: white;
    opacity: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    transition: 0.3s;
}

.gallery__caption p {
    padding-top: 20px;
}

.gallery__caption p:first-child {
    padding-top: 30px;
}


/* INFORMATIONS */

#img-info {
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    max-width: 50%;
    height: 100%;
    object-fit: cover;
}

.date {
    font-weight: bold;
}

#info table {
    text-align: left;
    margin-bottom: 50px;
}

#info table th {
    font-weight: bold;
    font-size: 26px;
    padding-bottom: 40px;
}

#info table:not(:last-child) td {
    padding-left: 50px;
}

#info table:first-child td:first-child {
    width: 30px;
    font-weight: bold;
}

#contact {
    color: #016CDB;
}


@media (max-width: 1110px) {


    #img-info {
        max-width: 100%;
        height: 50%
    }

}