@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html,
body {
    overflow-x: hidden;
}

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

.container {
    height: 1000px;
    width: 100%;
    padding: 32px;
    background-color: #1f1e1e;
}

.card {
    margin-bottom: 30px;
    height: 165px;
    width: 100%;
    background-color: #1f1e1e;
    display: flex;
    gap: 20px;
}

.card:hover{
    background-color: #575353;
}

.image {
    border-radius: 13px;
    position: relative;
    top: 6px;
    left: 6px;
}

.duration {
    height: 22px;
    width: 45px;
    background-color: rgba(0, 0, 0, 0.6);
    position: relative;
    bottom: 28px;
    left: 230px;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", "Arial", sans-serif;
    font-size: 14px;
}

.title{
    margin-top: 3px;
    margin-bottom: 8px;
    height: 25px;
    width: 1135px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
    font-family: "Roboto", "Arial", sans-serif;
    color: #f1f1f1;
    font-weight: 500;
    font-size: 21px;
}

.flex{
    padding-top: 2px;
    display: flex;
    gap: 5px;
    color: #aaa;
    font-family: "Roboto", "Arial", sans-serif;
    font-weight: 500;
    font-size: 15px;
}