html{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
header{
    padding-top: 8px;
    padding-bottom: 5px;
    text-align: center;
    font-size: 20px;
    border: 1px solid black;
}
body{
    margin: 0;
    background-color: lightgrey;
}
main{
}
.test{
    border: 1px solid black;
    display:inline;
    border-radius: 5px;
}
.headTitle{
    margin-top: 5px;
    display: inline;
    border: 2px solid black;
    border-radius: 10px;
    background-color:aliceblue;

    padding-left: 3px;
    padding-right: 3px;

}

.titleBar{
    margin-top: 8px;
}

.titleBarElement{

    margin-left: 2px;
    margin-right: 2px;

}

.titleOfPage{
    text-align: center;
    background-color:aliceblue;
    margin-left: 5vw;
    margin-right: 5vw;
}

.subtitleOfPage{
    align: center;
    text-align: center;
    font-size: 1.6em
    margin-left: 5vw;
}

.links{
    margin-left: 1em;
    text-align: left;
    font-size: 1.2em;
    word-wrap: break-word;
    margin-bottom: 0.7em;
    text-color: white;
}

.commentMetaInfo{
    text-align: left;
    font-size: 0.8em;
    margin-left: 2em;
}

.commentContent{
    margin-left: 1em;
    text-align: left;
    font-size: 1.2em;
    word-wrap: break-word;
    margin-bottom: 0.7em;
}
.animation{
    position: fixed;
    right: 2em;
    top: 0.3em;
}

.commentSection{
    background-color: #ff3030;
    position: relative;
    left: 5vw;
    width: 80vw;
    margin: 2em;
    border: 0.2vw solid #000000;
    border-radius: 10px;
    padding: 2vw;
}

.heading{
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    height: 2em;
    padding: 6px;
    //margin: 2em;
    background: grey;

    border: 8px solid transparent;
    border-radius: 8px;
    border-color: black;
}

.container{
    //display: grid;
    //grid-template-columns: 2fr 1fr;
    //gap: 15px;
    align-items: flex-start;
    //padding: 5px 5%;
}

.container .main-video{
    position: center;
    background-color: black;
    border-radius: 8px;
    padding: 8px;
    //margin-bottom: 10px;
}

.container .main-video video{
    width: 100%;
    border-radius: 8px;
}

.container .main-video .title{
    color: #333;
    font-size: 23px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.container .video-list{
    position: relative;
    font-size: 0.8em;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
    gap: 10px;

    border: 8px solid transparent;
    border-radius: 8px;
    background:
        linear-gradient(to right, #333, #333) padding-box,
        linear-gradient(to right, #8B0000, #8B0000) border-box;
    //height: 35em;
    padding: 10px;
    //overflow-y: scroll;
}

.container .video-list .vid video{
    width: 20em;
    border-radius: 5px;
}

.container .movie-thumbnail {
    position: relative;
    max-width: 15em;
    height: auto;
    border-radius: 4px;
    padding: 0.2em;
}
.container .movie-thumbnail:hover {
    transform: scale(1.05); /* Slightly enlarge the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    cursor: pointer; /* Change cursor to indicate it's clickable */

}
.container .movie-thumbnail .badge{
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 4px 6px;
    border-radius: 4px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.2s ease;

}
.container .movie-thumbnail:hover .badge{
    opacity: 0.25;
}

.container .filter-bar{
    margin: 8px;
}

.container .search-bar {
    display: flex;
    background: #1e1e1e;
    border-radius: 6px;
    overflow: hidden;
    width: 360px;
}

.container .search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px;
    flex: 1;
}

.container .search-bar input::placeholder {
    color: #888;
}

.container .search-bar input:focus {
    box-shadow: 0 0 0 2px rgba(0,123,255,.3);
}

.container .search-bar button {
    background: #333;
    color: #fff;
    border: none;
    padding: 0 14px;
    cursor: pointer;
}

.container .search-bar button:hover {
    background: #444;
}

header{
    background-color: aliceblue;
}

footer{
    position: relative;
    margin-top: 2vw;
    border: 1px solid black;
    background-color: aliceblue;
    width: 100%;
}

.birthday{
//position: absolute;
text-align: center;
//top: 5em;
//right: 45%;
//font-size: 4em;
}

.audio-bar-birthday{
    margin: 8px;
    display: flex;
    background: #1e1e1e;
    border-radius: 6px;
    width: 360px;
}

