.accueil 
{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: 20px;
}
.accueil-text
{
    flex: 1 1 300px;
    padding:10px;
    font-family: Arial, Helvetica, sans-serif;

}
.accueil-text p 
{
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.6;
}
.accueil-text a 
{
    color: #007BFF;
    text-decoration: underline;
}
.accueil-text a:hover
{
    text-decoration: underline;
}




.image
{
    flex: 1 1 300px;
    padding:10px;
}
.responsive
{
    width: 100%;
    height: auto;
    border-radius: 10px;
}
@media(max-width:768px){
    .accueil{
        flex-direction: column;
        text-align: center;
    }
    .accueil-text,.image {
        padding: 10px;
    }
}






body
{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    background-color: #f5f5f5;
    color:#333;
    line-height: 1.6;

}

.titre
{
    font-family: 'Courier New', Courier, monospace;
    font: 100;
    background-color: #c4f8c5;
    border-top: 2px solid #0077cc;
    border-bottom: 2px solid #0077cc;
    position: relative;
    color: rgb(113, 81, 6);
    text-align: center;
   
}
.menu
{
    background-color: #333;
}
.menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.menu li 
{
    margin: 0;
}
.menu a 
{
    display: block;
    padding: 15px 20px;
    color: #ddd;
    text-decoration: bold;
}
.menu a:hover
{
    background-color: #555;
}
@media (max-width:780px){
    .menu ul{
        flex-direction: column;
        align-items: center;
    }
    .menu a {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 1px solid #444;
    }
}

.theme
{
  background: #f9f9f9;
  border-left: 5px solid #0077cc;
  padding: 20px;
  margin: 20px auto;
  max-width: 700px;
  box-shadow: 0 4px 8px rgb(0,0,0,0.1);
  font-family: Georgia, 'Times New Roman', Times, serif;
  border-radius: 10px;
  font-size: 1.2em;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.7;
}

.theme:hover
{
    transform: scale(1.02);
    transition: 0.3s ease;
}
.amour
{
    background:#fff0f5;
    border-left: 5px;
    color:#c2185b;
}
.motivation
{
    background: #e3f2fd;
    border-left: 5px solid #2196f3;
    color:#1565c0;
}
.sagesse
{
    background: #e8f5e9;
    border-left: 5px solid #795548;
}
.philo
{
    background: #e8f5e9;
    border-left: 5px solid #4caf50;
}
.sommaire
{
    font-size: 2em;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #ddd;
}
.sommaire h3
{
    font-size: 2em;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Arial',sans-serif;

}
.citation
{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:15px ;
}
.citation li
{
    background-color: #0077cc;
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.3s ease;
}
.citation li:hover 
{
    background-color: #005fa3;
}
.citation
{
    background-color: #f5f5f5;
}
.citation a 
{
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-family: 'segoe UI',sans-serif;
}

.citation {
    flex-direction: column;
    align-items: center;
}


.apropos
{
    background-color: #f0f8ff;
    padding:60px 20px;
    text-align: center;
    border-top: 2px solid #0077cc;
    border-bottom: 2px solid #0077cc;
}
.apropos container
{
  max-width: 800px;
  margin: 0 auto;
}
.apropos h2
{
    font-size: 2em;
    margin-bottom: 20px;
    color: #0077cc;
    font-family: 'segoe UI',sans-serif;
}
.apropos p
{
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Geogia',sans-serif;
}
.auteur
{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-top: 20px;
    object-fit: cover;
    box-shadow: 0 4px rgba(0,0,0,0.2);

}
.contact {
    background-color: #b18787;
    padding: 40px 20px;
    text-align: center;
    
}
.contact h2
{
    font-size: 2em;
    margin-bottom: 10px;

}
.contact p
{
    margin-bottom: 30px;
    color: #555;
}
.contact form
{
    max-width: 500px;
    margin:auto;
    text-align: left;
    
}
.contact label
{
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    
}
.contact input,
.contact textarea
{
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact button
{
    background-color: #007BFF;
    color: rgb(30, 2, 2);
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contact button:hover
{
    background-color: #0056b3;
}
