body{
    background-color: #dc8a8a;
    background-image: url("/assets/img/background.jpg");
    background-attachment: fixed;
    background-repeat: repeat;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;
}

h2{
    text-align: center;
    color: rgb(71, 5, 5);
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

p, li{
    font-family: "Merriweather", serif;
    font-size: 15px;
}

.box{
    max-width: 1000px;
    margin: 15px auto;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 2fr 6fr 2fr;
}

 main, nav, footer, .container1, .container2, .container3 {
   border: #701010 2px solid;
   border-radius: 5px;
   background-color: #9d1515;
}

header {
    border: #701010 5px solid;
    border-radius: 5px;
    justify-content: center;
    width: 1000px;
    margin: 15px auto;
    height: 150px
}

.container1{
    grid-column: 1/2;
    height: max-content;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgb(53, 25, 100);
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}

.aboutme{
    color: rgb(32, 25, 113);
    font-family: "Merriweather", serif;
}

.info{
    color: rgb(208, 131, 128);
}

main{
    grid-column: 2/3;
    height: max-content;
    overflow-wrap: break-word;
    padding: 5px;
    margin-bottom: 15px;
}

h4, h3{
    color: #450808;
    text-decoration: underline;
}

main li::marker{
    color: #450808;
}

.note{
    text-align: right;
    font-weight: lighter;
    font-family: 'Times New Roman', Times, serif;
}

.container2{
    grid-column: 2/3;
    padding: 5px;
    overflow-wrap: break-word;
    height: max-content;
}

.indication{
    color: #450808;
}

.carousel{
    border: #dc8a8a 3px solid;
    height: 120px;
    width: 570px;
    display: flex;
    overflow-x: auto;
    gap: 5px
}

.carousel::-webkit-scrollbar{
    display: none;
}

.group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    animation: spin 5s infinite;
    padding-right: 0,5em;
}

.card{
    flex: 0 0 100px;
    height: 120px;
    width: 100px;
    background: beige;
    border-radius: 5px;
    text-align: center;
    align-content: center;
}

@keyframes spin{
    from{translate: 0;}
    to{translate: -100%;}
}

nav{
    grid-column: 3/3;
    height: max-content;
    padding: 5px;
    margin-bottom: 15px;
}

nav, .navbar ul{
    list-style-type: none;
    background-color: #9d1515;
    padding: 0px;
}

.jaune{
    background-color: rgb(203, 203, 65);
}

.rose{
    background-color: #9d1515;
}

.navtitle{
    text-align: center;
    color: rgb(71, 5, 5);
    padding: 10px 0px 10px;
    margin: 0px;
}

nav, .navbar a{
    justify-content: space-between;
    text-decoration: none;
    color: rgb(126, 16, 16);
    font: bold 16px Arial, Helvetica, sans-serif;
    padding: 10px 0px 10px 0px;
    display: block;
    text-align: center;
}

nav a:hover{
    color: rgb(86, 9, 9);
}

.container3{
    grid-column: 3/3;
    padding: 5px;
    overflow-wrap: break-word;
    height: max-content;
}

.wrapper{
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wrapper ul{
    list-style-type: square;
    list-style-image: none;
    color: rgb(0, 0, 0);
}
.rli{
    margin-left: -50px;
}

.wrapper li::marker{
    color: rgb(101, 8, 8);
}

.wrapper, title{
    background-color: rgb(170, 45, 45);
    padding: 5px;
}

footer{
    width: 1000px;
    justify-content: center;
    margin: 15px auto;
    padding: 5px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer a{
    text-decoration: none;
    color: black;
}