body {
    font-family: 'Arial', sans-serif;
    background-color: #fce4ec;
    margin: 0;
    padding: 0;
    color: #333;
    position: relative;
}

header {
    background-color: #f5abc0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

nav ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #ffeb3b;
}

footer {
    color: white;
    text-align: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 14px;
    z-index: 2;
}

h1 {
    color: pink !important;
    text-align: center;
    margin: 30px 0;
    font-size: 2em;
    font-weight: bold;
}

p {
    text-align: center;
    font-size: 1.2em;
    color: #333;
    margin-bottom: 40px;
}

table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 8px;
    text-align: center;
    font-size: 1em;
}

th {
    background-color: #f5abc0;
    color: white;
}

td {
    border: 1px solid #ddd;
    color: #555;
}

td img {
    border-radius: 10px;
    width: 80px;
    height: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

tr:nth-child(even) {
    background-color: #f8bbd0;
}

tr:hover {
    background-color: #f48fb1;
}

@media (max-width: 576px) {
    nav ul li {
        display: inline-block;
        margin-right: 30px;
    }
    h1 {
        font-size: 1.8em;
    }
    p {
        font-size: 1.2em;
    }
    table {
        width: 90%;
    }
    td, th {
        font-size: 1em;
        padding: 12px;
    }
    td img {
        width: 100px;
    }
}

@media (min-width: 577px) {
    table {
        width: 80%;
    }
    td, th {
        font-size: 1.1em;
    }
}

.image_accueil {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

h1, p {
    position: relative;
    z-index: 1;
    color: white;
}