* {
    margin: 0;
    Padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.contenItemsCarrusel {
    border: 5px solid black;
    width: 80%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden
}
  
.itemCarrusel {
    border: 1px solid black;
    height: 400px;
    position: relative;    
}
  
.tarjetaCarrusel {
    background-color: rgba(133, 216, 216);
    height: 200px
}
  
.flechasCarrusel {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px
}
  
a {
    text-decoration: none;
    font-size: 2rem;
    color: white
}
  
img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: center;
}