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

*::selection{
    background-color: black;
    color: white;
}

*::-moz-selection{
    background-color: black;
    color: white;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
    line-height: 14px;
}

div.clock{
    display: flex;
}

.container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

div.column_1{
    width: 25%;
    box-sizing: border-box;
    padding: 15px;
    text-align: left;
    height: 100vh; /* Utilisez 100vh pour occuper 100% de la hauteur de l'écran */
    overflow: auto; /* Ajoutez une barre de défilement si nécessaire */
}

div.column_2{
    width: 25%;
    box-sizing: border-box;
    padding: 15px;
    text-align: left;
    height: 100vh; /* Utilisez 100vh pour occuper 100% de la hauteur de l'écran */
    overflow: auto; /* Ajoutez une barre de défilement si nécessaire */
}

div.column_3{
    width: 25%;
    box-sizing: border-box;
    padding: 15px;
    text-align: left;
    height: 100vh; /* Utilisez 100vh pour occuper 100% de la hauteur de l'écran */
    overflow: auto; /* Ajoutez une barre de défilement si nécessaire */
}

div.column_4{
    width: 25%;
    box-sizing: border-box;
    padding: 15px;
    text-align: left;
    height: 100vh; /* Utilisez 100vh pour occuper 100% de la hauteur de l'écran */
    overflow: auto; /* Ajoutez une barre de défilement si nécessaire */
}

p.titre-cdr{
    text-align: center;
}

.pdf-container {
    height: 100vh;
    overflow: hidden;
}

.pdf-image {
    width: 100%;
    height: 100%;
}

img {
    width: 100%;
}

p.italic {
    font-style: italic;
}

hr {
    border: none;
    height: 1.5px;
    background: #000;
    background: repeating-linear-gradient(90deg, #000, #000 6px, transparent 6px, transparent 8px);
}

div.entete {
    display: flex;
}

div.gauche {
    width: 20%;
}

div.centre {
    width: 55%;
}

div.droite {
    width: 25%;
    text-align: right;
}

p.pierre-very-hight{
    text-align: center;
    width: 100%;
    margin-top: -80px;
    margin-bottom: 40px;
    font-family: 'Pierre';
    font-size: 40em;
    line-height: 0.6em;
}

.pierre-hight {
    text-align: center;
    width: 100%;
    margin-top: -40px;
    margin-bottom: 40px;
    font-family: 'Pierre';
    font-size: 15em;
    line-height: 0.6em;
}

p.pierre-low{
    word-wrap: break-word;
    margin-top: 30px;
    width: 100%;
    font-family: 'Pierre';
    font-size: 6em;
    line-height: 0.7em;
}

img.pierres{
    margin-top: 40px;
}

img#color {
    filter: grayscale(1) contrast(4); /* Vous pouvez ajuster le facteur de contraste selon vos besoins */
}

img#color:hover {
    filter: grayscale(0) contrast(1.5); /* Réinitialiser le contraste au survol si nécessaire */
}

img#color1{
    filter: grayscale(1) contrast(1); /* Vous pouvez ajuster le facteur de contraste selon vos besoins */
}

img#color1:hover {
    filter: grayscale(0) contrast(1.2); /* Réinitialiser le contraste au survol si nécessaire */
}

img#color2{
    filter: grayscale(1) contrast(1.5); /* Vous pouvez ajuster le facteur de contraste selon vos besoins */
}

img#color2:hover {
    filter: grayscale(0) contrast(1.5); /* Réinitialiser le contraste au survol si nécessaire */
}

div.message{
    display: none;
}

@media print{

    body {
        width: 100vw; /* 100% de la largeur de la vue */
        height: 100vh; /* 100% de la hauteur de la vue */
        margin: 0; /* Pas de marges par défaut pour l'impression */
    }


    div.colum_1{
        overflow: visible;
    }

}

@media screen and (max-width: 768px){

    div.message{
        display: block;
        width: 100%;
        text-align: center;
        margin: 45vh auto;
        text-transform: none;
        font-family: 'Arial';
    }

    div.container{
        display: none;
    }

}


















