/* mini-styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333333;
    margin: 20px;
    padding: 0;
}

h1 {
    color: #2c2c2c;
    border-bottom: 2px solid #cccccc;
    padding-bottom: 8px;
}

/* Consigne : h2 en violet (couleur du titre 'Pages web') + police Times */
h2 {
    color: #800080;
    font-family: 'Times', 'Times New Roman', serif;
}

h3 {
    color: #444444;
}

p {
    line-height: 1.6;
    max-width: 750px;
}

a {
    color: #0066cc;
}

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

img {
    border: 1px solid #cccccc;
    margin: 10px 0;
}

.section {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    padding: 15px 20px;
    margin-bottom: 20px;
    max-width: 800px;
}
