body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #0f0f0f;
    padding-top: 60px;
    padding-left: 80px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
    padding: 10px;
    margin-bottom: 35px;
}

@media (max-width: 900px) {
    .video-grid{
        grid-template-columns: 1fr 1fr;
    }
}

.shorts-logo img{
    height: 30px;
}
.shorts-logo{
    display: flex;
    align-items: center;
    color: white;
    font-weight: 450;
    margin-left: 15px;
    font-size: 23px;
}
.shorts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 15px;
    padding: 10px;
}
.video {
    width: 100%;
}

.video-title, .shorts-title {
    color: white;
    margin-top: 12px;
    margin-bottom: 8px;
}

.channel-name {
    color: #a8a8a8;
    margin-bottom: 4px;
    font-size: 14px;
}

.video-info {
    color: #a8a8a8;
    font-size: 14px;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}
.thumbnail {
    position: relative;
}
.thumbnail img {
    width: 100%;
    border-radius: 10px;
    
}

.video-length{
    color: white;
    position: absolute;
    bottom: 7px;
    right: 5px;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.75);
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
    border-radius: 3px;
}
.pfp{
    margin-top: 11px;
    margin-right: 10px;
}
.pfp img{
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.video-details{
    display: flex;
    flex: 1;
}

.shorts .thumbnail img {
    aspect-ratio: 5/8;
    object-fit: cover;
}