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

.canvas{
    height: 100vh;
    background-color: #120834;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container{
    width: 80vw;
    aspect-ratio: 16/9;
    background-color: white;
    position: relative;
    overflow: hidden;
}
.btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: blanchedalmond;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
 .left-btn{
    left: 20px;
}
.right-btn{
    right: 20px;
}
.flex-container{
    display: flex;
    height: 100%;
    background-color: aqua;
    transition: 0.4s ease;


}

.img-style{
    aspect-ratio: 16/9;
    object-fit: cover;
    

}
.carousel-nav{
    position: absolute;
    width: 100%;
    height: 40px;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.carousel-dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gainsboro;
    transition: 0.4s ease;
}

.carousel-dot.active{
    background-color: black;
}