.choiceView {
    background-image: url('/ressource/catIO/fond/catsneonST.png'); /* Remplacez "votre-image.jpg" par le lien de votre image */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
    width: 100%;
}

.logoContainer {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.animateLogoChoice {
    width: 100px;

}

.items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
}

.items .item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    transition: all 300ms ease-in-out;
    z-index: -1;
    opacity: 0;
}

.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item.active {
    opacity: 1;
    z-index: 99;
    box-shadow: 0px 0px 105px -35px rgba(255, 255, 255, 0.75);
}

.item.prev {
    z-index: 2;
    opacity: 0.25;
    transform: translate(-125%, -50%);
}

.item.next {
    z-index: 2;
    opacity: 0.25;
    transform: translate(25%, -50%);
}

.items .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 275px;
    z-index: 100;
}

.button-container .button {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    position: relative;
    opacity: 0.75;
    transition: all 300ms ease-in-out;
}

.button-container .button:hover {
    opacity: 1;
}

.button-container .button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    z-index: -99;
}

.button-container .button:nth-child(1) {
    float: left;
}

.button-container .button:nth-child(2) {
    float: right;
}

.buttonRetour {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 3px;
    border-radius: 6px;
    overflow: hidden;
}

.buttonRetour::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg,
    #4fcf70, #fad648,
    #a767e5, #12bcfe,
    #44ce7b);
    background-size: 50% 100%;
    border-radius: inherit;
}

.buttonRetour:hover::before {
    animation: animate_border .75s linear infinite;
}

.buttonRetour span {
    position: relative;
    z-index: 2;
    display: block;
    background-color: #0e031c;
    padding: 13px 20px;
    border-radius: 3px;
}

@keyframes animate_border {
    to {
        transform: translateX(-50%)
    }
}


.boutonRetourContainer {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 80%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 275px;
    z-index: 100;
}

.rotate {
    animation: rotation 2s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.instuctionContainer {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.instuctionContainer > span {
    color: #12bcfe;
    font-size: 40px;
}

@font-face {
    font-family: Catfont;
    src: url("/ressource/catIO/font/CuteMeow-51Pra.otf");
}

.ml6 {
    position: relative;
    letter-spacing: 0.1em;
    font-family: Catfont;
    font-size: 4.2em;
    color: wheat;
}

.ml6 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.3em;
    padding-right: 0.05em;
    padding-bottom: 0.1em;
    overflow: hidden;
}

.ml6 .letter {
    display: inline-block;
    line-height: 1em;
}