
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
}

 html {
    scroll-behavior: smooth;
 }

 .navbar
 {
    position: sticky;
    z-index: 1000;
    top: 0;
    background-color: #282828;
    display: flex;
    justify-content: space-between;
    padding: 15px;
 }

/*  .navbar .logo
 {
    padding: 10px;
    font-weight: 550;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 8px;    
 }  */

 .logo img {
    width: 100px;
    height: 40px;
    object-fit: cover;
 }

 .navbar .logo a {
    text-decoration: none;
    color: #fff;
 }

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;

}

/* .navbar ul  {
    margin-right: 10px;
    transition: color 0.3s;
    color: #e8e7e7;
    font-size: 15px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}  */

.navbar ul a {
    color: #e8e7e7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    justify-content: space-evenly;

}

.navbar ul a:hover {
    color: #a64d16;
    transition: 0.299ms ease;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}
.auth-buttons a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    color: rgb(201, 61, 10);
}

.auth-buttons a:hover {
    color: #a64d16;
    transition: 0.299ms ease;
}

/* Main content */

.help-center {
    text-align: justify;
    justify-content: center;
    display: block;
}
.help-center h1 {
    text-align: center;
    font-size: 26px;
}

.help-section {
    padding: 10px;
}

.help-section h2 {
    font-size: 18px;
    font-weight: 550;
}

.help-section ol ul {
    list-style-type: none;
}

.help-section p, ol {
    font-size: 13px;
    font-weight: 390;
}

sup {
    font-size: 12px;
    font-style: italic;
    color: #a64d16;
}



 /* Confidentialité */

 .confidence h1 {
    text-align: center;
    font-size: 26px;
 }

.confidence pre {
    text-align: center;
    color: #a64d16;
}

.terms {
    padding : 15px;
}
.terms p {
    font-size: 14px;
}
.terms h2 {
    font-size: 19px;
    font-weight: 470;
}

.terms ul {
    margin : 20px;
    list-style-type: none;
}

.terms li {
    font-size: 14px;
}

.terms li::before {
    content: "- " !important; /* Les tirets avant */
}

.info {
    padding: 15px;
}

.footer
 {
    background-color: #f8f8f8;
    justify-content: center;
    padding: 10px;
 }

 .footer p 
 {
    font-size: 14px;
    color: rgb(67, 66, 66) !important;
    text-align: center;
    padding: 10px;
    justify-content: center;
 }

 .enhaut {
    font-weight: bold;
 }

 .footer a {
    text-decoration: none;
    font-size: 20px;
 }

i:hover {
    transition : ease-in-out 0.15s;
    color: #a64d16;
    font-size: 16px;
 }

 blockquote
  {
    font-size: 11px;
    color: #474545e4;
    text-align: center;
  }


  /* animation fadeIn */

/* Animation fadeIn */
/* Animations personnalisées */
@keyframes slideFromTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Classes d'animation */
.navbar.animate-top {
    animation: slideFromTop 1s ease-in-out;
}

.help-center.animate-right {
    animation: slideFromRight 1s ease-in-out;
}

.confidence.animate-right {
    animation: slideFromRight 1s ease-in-out;
}

.footer.animate-bottom {
    animation: slideFromBottom 1s ease-in-out;
}


/* Responsive DESIGN */