.container{
    width: 100%;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color:rgb(51, 51, 51);
}
.tv{
    width: 100%;
    height: 20px;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: transparent;
    text-decoration: solid;
}
.top{
    display: flex;
    margin-top: 0%;
    align-items: center;
    justify-content: center;
    gap: 1px;
    
}

.frame{
    width: 300px;
    height: 160px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
}
.frame:hover{
    box-shadow: 1px 1px 20px rgb(0, 0, 0);
    filter: drop-shadow(1px 1px 20px rgb(0, 0, 0));
}

.slider{
    display: flex;
    transition: all 1s ease;
}

.image{
    width: 300px;
    height: 160px;
    display: flex;
    object-fit: cover;
    border-radius: 15px;
}
.bottom{
    display: flex;
    margin-top: 1px;
    gap: 10px;
}
.button{
    width: 6px;
    height: 6px;
    border: 2px solid white;
    border-radius: 50%;
    cursor: pointer;
}

.left{
    width: 40px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: left;
    color: white;
    font-size: 40px;
}

.right{
    width: 40px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: right;
    color: white;
    font-size: 40px;
}

.arrow{
    height: 160px;
    cursor: pointer;
}

