html {
    scroll-behavior: smooth !important;
    zoom: 0.9; /*Pourra être enlevé éventuellement*/
}

main {
    padding: 5rem;
    background-image: url(/assets/images/arrière-plan.png);
    background-size: cover;
}

.container {
    color: darkslategray;
}

h1 {
    color: #3c3c3c;
    font-size: 3rem;
    font-family: sans-serif;
    font-weight: 900;
    text-align: center;
}

h2 {
    padding-top: 3rem;
    padding-bottom: 0.4rem;
}

p {
    font-size: 1.1rem;
    margin-left: 10px;
}

.custom-souligner {
    border-bottom: 4px solid darkslategray;
    display: flex;
    justify-content: center;
    color: #3c3c3c;
    font-size: 3.3rem;
    font-family: sans-serif;
    font-weight: 900;
    text-align: center;
}

#fond {
    background-color: white;
    border-radius: 8px;
    border: 2px solid darkslategrey;
    padding-top: 0.5rem;
    margin-top: 1rem;
}

/*************************************BACK TO TOP BUTTON*****************************
************************************************************************************/
#TopButton {
    position: fixed;
    bottom : 58px;
    right: 10px;
    opacity: 0.5;
    margin: 15px;
}

/*Plnification*/

.list-group {
    line-height: 2;
    background-color: white;
    border-radius: 8px;
    border: 2px solid darkslategray;
}

/*Tableau*/

.styled-table {
    font-size: 1.1rem;
    width: 100%;
    border: 4px solid white;
}

.styled-table thead tr {
    background-color: darkslategrey;
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.styled-table thead th {
    border: 4px solid white;
}

.styled-table tbody td {
    border: 4px solid white;
}

th, td {
    text-align: left;
    padding: 2rem;
}


/*Timeline*/

#timeline .container {
    position: relative;
    width: 80%;
}

#timeline .timeline-item {
    padding: 1rem;
    text-align: center;
}

.timeline-content {
    background: #fff;
    padding: 7px 10px;
    border-radius: 5px;
}

.timeline-content h3 {
    margin: 0 0;
    font-size: 1.4rem;
}

/*Caroussel*/

#carouselExampleCaptions {
    background-color: white;
    width: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#carouselExampleCaptions .carousel-caption {
    text-align: center;
    color: darkslategray;
    position: static;
}

#carouselExampleCaptions .carousel-item {
    padding: 3rem;
}

#carouselExampleCaptions p {
    text-align: center;
}

/*Bouton*/

.container .bouton {
    padding: 2rem;
    text-align: center;
    padding-top: 6rem;  
}

.container .bouton a {
    color: white;
    padding: 15px;
    background-color: midnightblue;
    border: 0.2rem solid white;
    border-radius: 8px;
    transition: 0.7s;
    text-decoration: none;
    width: 20%;
}

.container .bouton a:hover {
    background-color: white;
    color: black;
    border: solid black
}

/*************************************FOOTER*****************************************
************************************************************************************/
#footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: darkslategrey;
    display: inline;
    z-index: 3;
    left: 0;
}

#footer .container {
    justify-content: space-around;
    margin-top: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    display: flex;
}

.icons_reseaux {
  justify-content: space-around;
  font-size: 1rem;
  padding-bottom: 0.8rem;
}

.icons_reseaux .icon {
  text-decoration: none;
  background-color: #007bff;
  border-radius: 50%;
  transition: background-color 0.8s ease;
  padding: 0.6rem;
}

.icons_reseaux .icon:hover {
  background-color: black;
}

#footer #copyright h1 {
    font-size: 1.2rem;
}

#footer #xml a {
    list-style-type: none;
    list-style: none;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

#footer #xml {
    padding-bottom: 5px;
}