
#videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    padding: 20px;
    background-color: rgb(32, 32, 32);
}
video {
    width: 300px;
    height: 300px;
    border-radius: 3%;
    border: rgb(21, 255, 0);
    border-style: solid;
    border-width: 5px;
}

.titlev
{
    text-align: center;
    color: rgb(21, 255, 0);
    background-color: rgb(0, 0, 0);
}

html {background-color: rgb(0, 0, 0); font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;}
