body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
    margin: 20px;
    background-color: aliceblue;
}

table {
    border-collapse: collapse;
    width: 90vw;
    max-width: 1200px;
    margin-bottom: 40px;
    border: 2px solid black; 
    border-radius: 2px;
}

th, td {
    border: 1px solid black;
    padding: 8px 12px;
    text-align: left;
    color: #000;

}

th {
    background-color: rgba(255, 255, 255, 0.75) ;
}

td {
    background-color: rgba(255, 255, 255, 0.37);
}


h2 {
    margin-top: 40px;
    color: #222;
    width: 90vw;
    max-width: 1200px;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}

a {
margin-left: auto;
margin-right: auto;
}

#containerpage {
    display: flex;
    flex-direction: column;
    height: 94vh;
    margin-top: auto;
    margin-bottom: auto;
}

.containersec {
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
}

.centerbutton {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.btnaccueil {
    font-size: 2em;
    font-weight: bolder;
    width: 14em;
    height: 3em;
    border-radius: 50px;
    border: none;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255, 255, 255, 0.37), inset -0.1em -0.1em 0.1em 0 rgba(41, 41, 41, 0.103);
    transition: 0.5s;
    filter: drop-shadow(10px 10px 4px #0000001c);
}

.btnaccueil:hover {
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(41, 41, 41, 0.103), inset -0.1em -0.1em 0.1em 0 rgba(255, 255, 255, 0.37);
    cursor: pointer;
    filter: drop-shadow(0px 0px 0px #0000001c);
}

.btndelete {
    background-color: #e94a4a;
    width: 10em;
    height: 5em;
    font-weight: bolder;
    border-radius: 50px;
    border: none;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(255, 255, 255, 0.37), inset -0.1em -0.1em 0.1em 0 rgba(41, 41, 41, 0.103);
    transition: 0.5s;
    filter: drop-shadow(10px 10px 4px #0000001c);
}

.btndelete:hover {
    background-color: #b8374c;
    box-shadow: inset 0.1em 0.1em 0.1em 0 rgba(41, 41, 41, 0.103), inset -0.1em -0.1em 0.1em 0 rgba(255, 255, 255, 0.37);
    cursor: pointer;
    filter: drop-shadow(0px 0px 0px #0000001c);
}

h1 {
    text-align: center;
    font-size: 3em;
    font-weight: bolder;
    margin-bottom: 1em;
}

footer {
    text-align: center;
    font-weight: bolder;
}

.texteexpl {
    width: 40em;
    font-size: larger;
    margin-top: 3em;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}