.item{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: var(--background)
}

.item.active{
    display: block;
}

.item .title{
    font-size: 12rem;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;

    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.item .fruta{
    left: 50%;
    width: 50%;
    position: absolute;
    top: 0;
    z-index: 3;
}

.item .fruta2{
    left: 0%;
    width: 50%;
    position: absolute;
    top: 0;
    z-index: 3;
}

.item .refri{
    z-index: 2;
    width: 600px;
    position: absolute;

    position:absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#previ, #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 1px solid #eee9;
    color: #eee;
    font-size: x-large;
    font-family: monospace;
    cursor: pointer;
    z-index: 4;
    border-radius: 50%;
}
#previ{
    left: 30px;

}
#previ:hover{
    transition: .4s;
    color:chartreuse;
    
}

#next{
    right: 30px;

}

#next:hover{
    transition: .4s;
    color:chartreuse;
    
}

@keyframes toActive{
    from{
        top: 100%;
        opacity: 0;
    }
}

.item.active img.fruta, img.fruta2{
    animation: toActive 0.5s ease-in-out 1;
}

.item.active .title{
    animation: toActive 0.5s ease-in-out 1;
}