@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Mono&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    font-family: "Poppins", sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f5f5;
    scrollbar-width: auto; 
    scrollbar-color: #888 #f1f1f1;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

body{
    position: relative;
    padding-top: 50px;
    padding-left: 100px;
    padding-right: 100px;
    gap: 50px;
    background-color: #f5f5f5;
    overflow: auto;
}

.aProposDuSite,
.mentionsLegales{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: justify;
    gap: 30px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    background-color: #f5f5f5;
}

h1{
    font-size: 30px;
}

p, ul li{
    font-size: 17px;
}

ul {
    list-style-position: inside;
}

body > a{
    position: fixed;
    right: 20px;
    bottom: 100px;
    text-decoration: none;
    color: #fff;
    background-color: #F54331;
    border: none;
    border-radius: 30px;
    padding: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

body > a:active,
body > a:hover{
    background-color: #F51600;
    transform: scale(1.1);
}

.mentionsLegales ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mentionsLegales ul li:last-child{
    margin-bottom: 20px;    
}

@media screen and (max-width: 1000px) {
    body{
        padding-left: 70px;
        padding-right: 70px;
    }

}

@media screen and (max-width: 768px) {
    body{
        padding-left: 40px;
        padding-right: 40px;
    }
    body > a{
        font-size: 14px;
    }
    h1{
        font-size: 25px;
    }
    p, ul li{
        font-size: 16px;
    }
    .mentionsLegales ul{
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    body{
        padding-left: 20px;
        padding-right: 20px;
    }
    .aProposDuSite,
    .mentionsLegales{
        text-align: initial;
    }
    h1{
        font-size: 23px;
    }
}