@charset "utf-8";
/* CSS Document */

/* Assure que html et body2 occupent toute la hauteur */
html, body {
    height: 100%;
    margin: 0;
    padding: 20px;
    display: block; /* essentiel pour forcer body2 à se comporter comme un élément bloc */
}

/* Style principal */
body {
    font-family: Arial, sans-serif;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    background-image: url('infographies/FondWebFonce.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Reste du style inchangé */
.intro-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
}

/* Supprimer tout effet de bordure blanche visuelle */
.container {
    margin: 0;
    padding: 0; /* Si tu veux retirer l’espace intérieur */
    max-width: 1120px;
    border-radius: 10px;
    background-color: rgba(26, 67, 19, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.header {
    text-align: center;
    
}

.header img {
    width: 40%;
    height: auto;
}

.content {
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.content h2 {
    color: #800000;
}

.content a {
    font-family: Arial, sans-serif;
    color: #19BF19;
    text-decoration: none;
    font-weight: bold;
    opacity: 1;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    display: inline-block;
    transition: transform 0.3s ease;
}

.content a:hover {
    color: #ffffff;
    transform: scale(1.07);
}

.link-section {
    margin-top: 20px;
}

.link-section h3 {
    font-size: 2em;
    color: #FFF;
    margin-bottom: 10px;
}

.link-section ul {
    list-style: none;
    padding: 0;
}

.link-section ul li {
    padding: 5px 0;
}

.search-form {
    text-align: center;
    margin-top: 20px;
}

.search-form input[type="text"] {
    padding: 8px;
    width: 70%;
    max-width: 400px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-form input[type="submit"] {
    padding: 8px 16px;
    background-color: #19BF19;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.search-form input[type="submit"]:hover {
    background-color: #107310;
}
