@tailwind base;
@tailwind components;
@tailwind utilities;

@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&display=swap');


::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

.text-yellow-500{
    color: #F8E183!important;
}

::-webkit-scrollbar-track-piece  {
    background-color: rgb(75, 75, 75);
}

::-webkit-scrollbar-thumb:vertical {
    height: 15px;
    background-color: #F8E183;
}

.button-card{
    background-color: #F8E183;
    box-shadow: #F8E183 1px 2px 12px 1px;
}


#badge-list{
    display: flex;
    gap: 5px;
    margin-top: 4px;
}

strong{color: #F8E183}

#home{
    z-index: 98;
}#scroll-progress{
    z-index: 99;
}

#badge-list li{
    /* background: red; */
    border-radius: 12px;
    padding: 2px 16px;
    width: fit-content;
    font-weight: 500;
    border: 1px solid #F8E183;
    color: rgba(255, 255, 255, 0.753);
}

#badge-list li:nth-child(1){
    background: transparent;
}#badge-list li:nth-child(2){
    background: transparent;
}#badge-list li:nth-child(3){
    background: transparent;
}

.button-card-second{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.315);
    color: white;
    /* box-shadow: #e9e9e9 1px 2px 12px 1px; */
}
.button-card-th{
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0.315);
    color: rgb(46, 46, 46);
    /* box-shadow: #e9e9e9 1px 2px 12px 1px; */
}

*{
    padding: 0;
    margin: 0;
    background: #0d0d0d;
    font-family: "Poppins", sans-serif!important
}

body{
    animation: loading 1.3s ease-in;
}

*::selection{
    background-color: rgb(75, 75, 75);
    color: #fff;
}

.boxFAQ{
    background: #131313;
}



#perso{
    filter: grayscale(100%);
}

.iconTools{
    filter: grayscale(100%);
}

#logoServer{
    animation: fade 2s ease-in-out infinite;
}

@keyframes loading{
    from{
        opacity: 0.1;
    }
    to{
        opacity: 1;
    }
}


@keyframes fade{
    0%{
        transform: translateY(10px);
    }
    50%{
        transform: translateY(0px);: 1;
    }
    100%{
        transform: translateY(10px);: 1;
    }
}

.showAndHide {
    display: flex;
    transition: 300ms ease-in-out;
    animation-name: translateY;
    animation-duration: 1s;
}

@keyframes translateY {
    from{
        transform: translateY(-40px);
    }
    to{
        transform: translateY(0px );
    }
}

.circleBlur{
    top: -2rem;
    background: #131313;
    position: absolute;
    height: 900px;
    width: 10%;
    filter: blur(15px);
    z-index: 1;
}

.sliderContainer{
    overflow: hidden;
    cursor: grab;
}

.sliderContainer.active {
    cursor: grabbing;
}

.slider{
    display: flex;
    max-width: 90%;
    overflow: hidden;
}

.slider {
    display: flex;
    max-width: 90%;
    cursor: grab;
    white-space: nowrap; /* Empêche le saut à la ligne */
}




