/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
}

/* Header */
header {
    background-color: #222;
    color: white;
    padding: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Sépare le titre et le logo */
    padding: 20px 50px;
}

/* Logo */
#logo {
    width: 150px; /* Ajuste la taille selon ton logo */
    height: auto;
}

h2 {
    padding-bottom: 20px;
}

/* Navigation */
nav {
    background-color: #444;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #f8b400; /* Effet au survol */
}

/* Contenu principal */
main {
    padding: 50px 20px;
}

/* style des paragraphes dans A propos*/
#red{
    color: red;
}

#orange {
    color: orange;
}

#green {
    color: green;
}

#blue {
    color: blue;
}

/* Style pour les paragraphes dans la section le jeu */

.container {
    display: flex;
    
}



/* Style pour la section des réseaux sociaux */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a img {
    width: 40px; /* Ajuste la taille selon ton besoin */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.social-links a img:hover {
    transform: scale(1.1); /* Effet d'agrandissement au survol */
}

/* Formulaire de contact */
form {
    max-width: 500px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    background-color: #222;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #f8b400;
}



h2 {
    font-size: 28px;
    color: #222;
}

p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 15px;
    font-size: 14px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

