@charset "ISO 8859-1";
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-repeat: repeat-x;
    background-color: #f5f5f5;
    color: #333;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4em;
}

.logo {
    text-align: center;
    padding: 10px;
    width: 100%;
    background: #D7F6F6; /* Couleur de fond par défaut */
    background: -moz-linear-gradient(to right, #D7F6F6, #F3F3F3); /* Dégradé de couleur pour Firefox */
    background: -webkit-linear-gradient(to right, #D7F6F6, #F3F3F3); /* Dégradé de couleur pour Chrome */
    background: linear-gradient(to right, #D7F6F6, #F3F3F3); /* Dégradé de couleur standard */
    color: #000000; /* Couleur du texte (blanc dans cet exemple) */
}


.line1 {
    font-size: 4em;
    display: block;
    background-image: -moz-linear-gradient(to right, black, blue), -webkit-linear-gradient(to right, black, blue), linear-gradient(to right, black, blue);
    color: transparent;
    background-clip: text;
    text-shadow: 1px 1px 2px blue, 1px 1px 3px rgba(255, 255, 255, 0.5);
}


.line2 {
    font-size: 0.8em;
    color: #000000;
    display: block;
    text-shadow: 2px 2px 4px #333;
}


nav {
    display: flex;
    flex-direction: column;
    background-color: #3498db;
    padding: 10px;
}

.menu-title {
    color: #ecf0f1;
    margin-bottom: 5px;
    cursor: pointer;
}

.menu-title:hover {
    background-color: blue;
    font-weight: bold;
    color: black;
}

.menu a {
    text-decoration: none;
    color: #ecf0f1;
    padding: 5px;
    display: block;
    font-weight: normal;
    transition: color 0.3s;
}

.menu-button {
    color: #ecf0f1;
    background-color: #2980b9;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2em;
}

.menu-button:hover {
    background-color: #2c3e50;
}

.menu {
    display: none;
}

.menu.show {
    display: flex;
    flex-direction: column;
}

.menu li {
    text-align: left;
    margin: 0;
}

.menu a {
    text-decoration: none;
    color: #ecf0f1;
    padding: 5px;
    display: block;
    font-weight: normal;
    transition: color 0.3s;
}

.menu a:hover {
    background-color: blue;
    font-weight: bold;
    color: red;
}

#TEXTE a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

#TEXTE a:hover {
    text-decoration: underline;
    color: #000000;
}

.LIENARBO,
.ALIENARBO {
    font-size: 0.6em;
    overflow: auto;
    background-color: #F9F9F9;
    border: inset;
    color: #999999;
}

#TEXTE {
    font-size: 0.9em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    background-image: url("/images/h_123456.jpg");
    background-repeat: repeat-x;
    text-transform: uppercase;
}

h1 {
    color: #B30000;
    margin-bottom: 60px;
    font-size: 1.3em;
}

h2 {
    padding-left: 15px;
    color: #BA3500;
    margin-bottom: 50px;
}

h3 {
    padding-left: 25px;
    color: #C16200;
    margin-bottom: 40px;
}

h4 {
    padding-left: 35px;
    color: #C57D00;
    margin-bottom: 30px;
}

h5 {
    padding-left: 45px;
    color: #C99700;
    margin-bottom: 20px;
}

h6 {
    padding-left: 55px;
    color: #D0C900;
    margin-bottom: 10px;
}

p:first-letter {
    text-transform: uppercase;
}

p {
    font-family: "arial", sherif;
    color: black;
    font-size: 1.2em;
}

.OK:first-letter,
.ERREUR:first-letter,
.COMMENT:first-letter {
    text-transform: uppercase;
}

.OK,
.ERREUR,
.COMMENT,
.CODE {
    display: block;
    font-family: sherif;
    font-size: 0.9em;
    left: 5px;
    padding-left: 10px;
    color: #000000;
}

.OK {
    background-color: #DCFFDC;
    border-style: solid;
    border-color: lime;
}

.ERREUR {
    background-color: #FFE6E6;
    border-style: solid;
    border-color: #FF6666;
}

.COMMENT {
    font-size: 0.7em;
    font-family: Verdana, sherif;
    font-style: italic;
    background-color: #F3F3F3;
    border-style: solid;
    border-color: #CCCCCC;
    left: 5px;
    padding-left: 10px;
    color: #333333;
}

.CODE {
    font-size: 0.8em;
    font-family: courier;
    font-style: italic;
    background-color: #F0F0F0;
    border-style: solid;
    border-color: #CCCCCC;
    left: 5px;
    padding-left: 10px;
    color: #333333;
    overflow: auto;
}

#BAS {
    background-image: url("/images/bg_bas.jpg");
    height: 75px;
    clear: both;
    background-color: #99FF99;
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    text-align: center;
    font-size: 0.7em;
    padding-top: 5px;
}

#copyright {
    float: left;
    font-size: 0.6em;
    margin-left: 5px;
}

.cpt {
    color: red;
    text-decoration: underline;
}

#tpsexectimes {
    float: right;
    font-size: 0.6em;
    margin-right: 5px;
}

a {
    font-size: 0.9em;
    color: #333333;
    font-weight: bold;
}

a:hover {
    color: #666666;
}

/* Media Query pour les écrans de petite taille */
@media only screen and (max-width: 600px) {

.line1 {
    font-size: 1.6em;
}


.line2 {
    font-size: 0.5em;
}
    nav {
        padding: 5px;
    }

    .menu-title {
        font-size: 1.2em;
    }

    .menu a {
        font-size: 1em;
        padding: 3px;
    }

    .menu-button {
        font-size: 1.5em;
        padding: 8px;
    }

    #TEXTE {
        font-size: 0.8em;
    }
}

