body{
    font-family: sans-serif;
}
.container{
    height: 100%;
    position: fixed;
    width: 555%;
    top: 11.5%; 
    left: 200px;
    margin: 3px;
    max-width: auto;
}
.content{
    position: relative;
    gap: 10px;
    display: flex;
}
.ft-content{
    color: white;
    background-color: rgba(86, 79, 79, 0.737);
    border-radius: 10px 10px 0px 0px;
    padding: 7px;
    width: 500%;
    font-size: 30px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.movie {
    width: 190px;
    height: 300px;
    margin-top: 5px;
    border-radius: 5px;
    position: relative;
}

.thumbnail > img{
    display: block;
    width: 190px;
    height: 260px;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 260px;
    width: 100%;
    opacity: 0;
    transition: .3s ease;
    background-color: rgba(102, 97, 97, 0.598);
}
.thumbnail:hover .overlay {
    opacity: 1;
}
.icon-play > svg {
    color: rgb(0, 0, 0);
    background-color: white;
    font-size: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    border: 1px solid white;
    border-radius: 100%;
    padding: 5px;
}

.title-mov{
    display: flex;
    align-items: center;
    justify-content: start;
}
.title-mov{
    margin-left: 2px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    text-decoration: none;
    color: white;
}