<!-- ======== fichier : style.css ======== -->
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    color: yellow;
}

nav ul li a:visited {
    color: lightgray;
}

main {
    padding: 20px;
}

section {
    background: white;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
}

img {
    border-radius: 50%;
    display: block;
    margin-bottom: 10px;
}

#competences ul {
    list-style-type: square;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid black;
}

th {
    background-color: #333;
    color: white;
}

td, th {
    padding: 10px;
    text-align: center;
}

section p {
    color: #555;
}

footer {
    text-align: center;
    background: #333;
    color: white;
    padding: 10px;
}
