* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('https://photos.tf1.fr/1920/1080/cover-showpage-00395b-d7bda5-0@3x.jpg');
    background-size: cover; 
    background-position: center center; 
    background-attachment: fixed; 
    background-repeat: no-repeat;
    background-color: #000; 
    color: white;
    text-align: center;
    padding: 0;
    margin: 0;
}

nav {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin-right: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 25px;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.7); 
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    width: 80%;
    max-width: 1000px;
    color: #f4f4f4;
    text-align: left;
}

h2 {
    font-size: 26px;
    color: #f4f4f4;
    margin-bottom: 20px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
}

.image-left {
    max-width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.image-interpretation {
    max-width: 200px;
    border-radius: 10px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.text {
    font-size: 18px;
    line-height: 1.6;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 12px;
    text-align: left;
}

th {
    background-color: rgba(0, 0, 0, 0.5);
}

td {
    background-color: rgba(0, 0, 0, 0.3);
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: #7d8287;
    text-decoration: none;
    font-weight: bold;
}

ul li a:hover {
    text-decoration: underline;
}

body, section {
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-right: 15px;
    }

    .image-left {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .image-interpretation {
        max-width: 180px;
    }

    section {
        width: 95%;
    }
}

html {
    scroll-behavior: smooth;
}