@font-face {
    font-family: 'Lexend';
    src: url('fonts/lexend/Lexend-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Gabarito';
    src: url('fonts/gabarito/Gabarito-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



body {
    font-family: 'Gabarito', Arial, Helvetica, sans-serif;
    font-size: 16px;
    background-color: #202020;
    padding: 0;
    margin: 0;
}

div.layout {
    display: flex;
}

div.sidebar {
    display: flex;
    height: calc(100vh - 32px);
    overflow-y: auto;
    width: 400px;
    padding: 16px;
    flex-direction: column;
    gap: 4px;
}


div#content {
    flex-grow: 1;
    padding: 16px;
}

.channel-container {
    display: flex;
    gap: 12px;

    align-items: center;

    border: 1px solid black;
    cursor: pointer;

    border-radius: 16px 0 16px 0;

    background: linear-gradient(126deg, #909090 0%, #404040 100%);
}

.channel-container.current {
    background: linear-gradient(126deg, #ffffff 0%, #404040 100%);
}

.channel-container:hover {
    background: linear-gradient(126deg, #ffffff 0%, #404040 100%);
}

.channel-container .channel-logo {
    height: 60px;
    width: 60px;
    padding: 8px;
    border-radius: 16px 0 0 0;
    background-color: white;
    background: linear-gradient(0deg, #c0c0c0 0%, #ffffff 40%);
    object-fit: contain;
    box-shadow: 1px 0px 2px;
}

.channel-container:hover .channel-name {
    color: white;
}

.channel-container .channel-name {
    color: black;
    transition: color 0.5s linear;
}

/* video {
    width: 100%;
    object-fit: contain; 
} */