body{
    background-color: rgb(245, 241, 241);
}
div{
    outline: 3px inset #1C6EA4;
    outline-offset: 5px;
    padding: 15px;
    margin: 5px yellow;
    background-color: #FAFFC5;
}
div {
    background: linear-gradient(to right, #f7f9fc, #e3e9f3); 
    border: 2px solid #63b3ed; 
    border-radius: 10px; 
    padding: 10px; 
    margin: 20px auto; 
    max-width: 1000px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Time new roman', sans-serif;
}

strong {
    color: black;
    font-weight: bold;
}

h1{
    color:white;
    text-align: left;
    background-color: rgb(44, 35, 35);
    text-shadow: 0 2px 4px, yellow 0 -2px 10px, brown 0 -10px 20px, rgb(157, 255, 0) 0 -18px 40px;
}
ul{
    margin: 10px 0;
    padding-left: 40px;
}
li{
    margin: 10px 0;
}
a{
    color: #3182ce;
    margin: 10px 0;
    background: #3182ce;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 15px;
    text-align: center;
    display: inline-block;
}

div a:hover {
    background: #2c5282;
}
thead {
    background: #2f66b4;
    color: white;
}

thead th {
    padding: 10px;
    text-align: left;
}
tbody tr {
    background: rgb(245, 238, 238);
}
td, th {
    padding: 10px;
    border: 1px solid black;
}
.Titre{
    text-align: left;
    padding-left: 75px;
    font-size: 1.2em;
    color: #4400ff;
     /* Bright orange for fire */
    font-family: 'italic', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 
        0 0 10px #5900ff, 
        0 0 20px #5947ff, 
        0 0 30px #15ff00, 
        0 0 40px #1900ff, 
        0 0 50px #5900ff, 
        0 0 60px #6f47ff;
    
    animation: fireGlow 3s infinite alternate, explode 3s infinite ease-in-out;
}

@keyframes fireGlow {
    0% {
        text-shadow: 
            0 0 5px yellowgreen, 
            0 0 10px #ff6347, 
            0 0 15px #ff8c00, 
            0 0 20px #3cff00, 
            0 0 25px #ff4500, 
            0 0 30px #b8ff47;
    }
    100% {
        text-shadow: 
            0 0 20px #b5e924, 
            0 0 30px #ec8270, 
            0 0 40px yellow, 
            0 0 50px #d0ff00, 
            0 0 60px #9dff00, 
            0 0 70px #f3ff47;
    }
}

/* Exploding Text Animation */
@keyframes explode {
    0%, 100% {
        transform: scale(1);
        letter-spacing: 2px;
    }
    50% {
        transform: scale(1.2);
        letter-spacing: 6px;
    }
}


