@font-face {
    font-family: 'Kern';
    font-weight: normal;
    src: url('fonts/Kern-Regular.woff2') format('woff2');
}

html, body {
    height: 100%;
}

html * {
    cursor: auto;
}

body {
    background-color: rgb(255, 255, 255);
    font-family: 'Kern';
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: transparent;
    position: fixed;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.grid-text1 {
    text-align: left;
}

.grid-text2 {
    text-align: right;
    margin-right: 16px;
}

.grid-text3 {
    cursor: w-resize;
}

.grid-text4 {
    text-align: right;
    margin-right: 16px;
    cursor: e-resize;
}

.grid-text3:hover, .grid-text4:hover{
    background-color: transparent;
    color: transparent;
}

.projets-suivants-bas {
    background-color: white;
    display: grid;
    margin-top: -0.2vw;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

.fleche-gauche-bas {
    text-align: left;
    cursor: w-resize;
    margin-bottom: 8px;
}

.fleche-droite-bas {
    text-align: right;
    cursor: e-resize;
    margin-bottom: 8px;
}

.fleche-gauche-bas:hover, .fleche-droite-bas:hover{
    background-color: transparent;
    color: transparent;
}

.descriptif {
    margin-top: 4vw;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
}

a {
    color: black;
    font-weight: normal;
    text-decoration: none;
    cursor: pointer;
    font-size: 1.2rem;
}

a:hover {
    font-style: italic;
}

p {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
}

.highlight {
    color: rgb(153, 153, 154);
    cursor: pointer;
}

.highlight-link {
    color: rgb(153, 153, 154);
}

.highlight-black {
    color: rgb(0, 0, 0);
}

.highlight-bleu {
    color: rgb(0, 24, 162);
}

.highlight-bleucl {
    color: rgb(0, 132, 255);
}

.highlight-orange {
    color: rgb(255, 87, 49);}

.highlight-rose {
    color: rgb(247, 3, 137);
}

.grid-description1, .grid-description2, .grid-description3 {
    text-align: left;
}

.img-container {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 99vw;
    height: 99vh;
    padding: 0px;
    border: none;
    margin-bottom: 10px;
}

.image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1700px) {
    .img-container {
    width: auto;
    height: auto;
    }
    .image1 {
        width: 100%;
   }
}