@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
* {
    color: white;
    outline: none;
    font-size: 3vh;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    text-overflow: ellipsis;
    text-transform: lowercase;

     
}
body {
    background-color: rgb(14, 15, 16);
}
h1 {
    margin-top: 3vh;
    margin-bottom: 0;
    text-align: center;
}
ol {
    width: 90vw;
}
#video {
    visibility: hidden;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 76.6vw;
    height: 85vh;
    z-index: 999;
    margin-top: 2.5vh;
    transform: translate(-50%, -50%);
}
#cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    z-index: 998;
}
.header {
    width: 20vw;
    margin: 0 auto;
    margin-bottom: 5vh;
}
.category-title {
    padding-left: 0vw;
}
.vid-container {
    width: 192px;
    height: 108px;
    margin-left: 2vw;
    position: relative;
    display: inline-block;
}
.vid-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 10;
    font-size: 2vh;
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px 60px black;
    pointer-events: none;
}
.vid-thumb {
    width: 100%;
    height: 100%;
    opacity: 50%;
    cursor: pointer;
    filter: blur(1px);
}