/* GENERAL BODY */
html, body {
    margin: 0;
}

/* CANVA CLASS */
.canva {
    margin: 0 auto;
    overflow: hidden;
    width: min(100%, 600px);
}
.canva > div {
    overflow: hidden;
    position: relative;
}

/* IMAGE COVER */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}

/* CENTER ITEMS */
.item-center {
    display: flex;
    justify-content: center;
    
}