html{
    background-color: rgb(212, 212, 212);
}
body {
    text-align: justify;
    margin: 0;
    padding: 0;
    font-family: Cambria;
    color: rgb(0, 0, 0);
    font-size: 25px;
}
.body
{
    margin: 40;
    padding: 0;
}
h2, h3, h4 {
    text-align: justify;
    margin: 40;
    padding: 0;
    color: rgb(0, 0, 0);
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    text-decoration: underline;
}
h1{
    text-align: justify;
    margin: 40;
    padding: 0;
    color: rgb(0, 0, 0);
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    text-decoration: underline;
    text-shadow: 15px black;    
}
.intro-image {
    background-image: url('Batman_logo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    animation: rotation 5s forwards, fadeInOut 5s forwards;
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes rotation {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

.rotation {
    animation-name: rotation;
    animation-timing-function: linear;
}

.image 
{
    display: flex;
    margin: auto;
    justify-content:center;
    align-items: center;
}
table {
    position: absolute;
    border-collapse: collapse;
    border: 1px solid rgb(212, 212, 212);
    box-shadow: 2px 2px 12px rgba(0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0.2);

}
tr{
    transition: all .2s ease-in;   
}
td, th {
    text-align: left;
}
tr:hover{
    background-color:rgb(212, 212, 212);
    transform: scale(1.02);
    box-shadow: 2px 2px 12px rgba(0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0.2);

}
.titre
{
    display: flex;
    margin: auto;
    justify-content:center;
    align-items: center;
    border-radius: 200px;
    outline: solid;
    box-shadow:20px 20px 40px rgb(0, 0, 0);
    width: 100px;
    height: 5px;
    padding: 50px;
}
.titre2{
    font-weight: bold;
    font-size:40;
}
table.batman-actors {
    width: 80%;
    margin: 0 auto;
}

table.batman-actors th,
table.batman-actors td {
    padding: 8px;
    border: 1px solid rgb(212, 212, 212);
}

table.batman-actors th {
    background-color: rgb(212, 212, 212);
}

table.batman-actors tr:nth-child(even) {
    background-color: rgb(212, 212, 212);
}

table.batman-actors tr:hover {
    background-color: rgb(212, 212, 212);
}

.footer {
    text-align: center;
    margin-top: 40px; 
    font-size: 20px;
}

.table-container {
    margin: 0 auto;
    position: relative;
    width: 80%; 
    max-width: 1200px; 
    margin-bottom: 40px; 
    border-collapse: collapse;
    font-size: 20px;
}