@tailwind base;
@tailwind components;
@tailwind utilities;

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track-piece  {
    background-color: rgb(75, 75, 75);
}

::-webkit-scrollbar-thumb:vertical {
    height: 15px;
    background-color: rgba(246, 246, 246, 0.74);
}

*{
    padding: 0;
    margin: 0;
    background: #131313;
}

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 3s 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 */
}




