body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 100vh;
}

h1 {
    text-align: left;
    margin: 20px 0;
    margin-left: 25px;
}
main {
    background-color: transparent;
    height:auto;
    color: #9c9999;
    width:100%;
}

/* Dropdown Filter Styling */
#filterDropdown {
    display: block;
    margin: 20px 0;
    padding: 10px 15px;
    font-size: 16px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#filterDropdown:hover {
    background-color: #444;
}
.list-container {
    margin-left:auto;
    width: 50vw;
    text-align: left;
}
/* Video List Styling */
.work-list {
    list-style: none;
    margin-right: 0;
    padding: 0;
    margin: 0 auto;
    width: 50vw; /* Takes up half of the viewport width */
    overflow: hidden;
}

.work-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid #444;
}

.work-list li:last-child {
    border-bottom: none; /* Remove border from the last item */
}

/* Show List Items Matching Filter */
.work-list li.show {
    display: block; /* Show filtered items */
}

/* Text Styling */
.work-name {
    flex:1;
    text-align:center;
    color: rgb(255, 255, 255);
}

.artist-name {
    flex: 1;
    text-align: center;
    color: #fff;
}

.work-date {
    flex: 1;
    text-align: right;
    color: #ffffff;
}



.container{
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: auto;
}  

.titleFont {
    font-family: "Rock Salt", cursive;
    font-weight: 400;
    font-style: normal;
  }
  .static{
    width: vw;
    position: absolute;
    inset:-100%;
    background-image: url(img/pngtree-static-tv-noise-2d-90s-png-image_5745251.png);
    z-index: 0;
    opacity: 10%;
    animation: shift 0.2s linear infinite both;
    overflow: hidden;
}
@keyframes shift {
    0%{
        transform:translateX(10%) translateY(10%);
    }
    100% {
        transform: translateX(-10%) translateY(-10%);
    }
}
header {
    background-color:transparent;
    height: 100px;
    top: 0%;
    position: fixed;
    width: 100%;
    z-index: 20;
}
nav {
    background-color:transparent;
    color: #ffffff;
    width: 100%;
    text-align: right;
    position: fixed;
    top: 4%;
    font-size: 20px;
    z-index: 2;
    font-family: 'Courier New', Courier, monospace;
}
.nav{
    margin-right: 2vw;
    color: #ffffff;
}
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:hover { text-shadow: 0 0 10px #ecf9ff; 
        animation:hoverNav 1.5s ease-in-out infinite alternate;}
a:active {color: #000000;}
@keyframes hoverNav{
    from{
        text-shadow: 0 0 10px #c0ebff;
    }
    to{
        text-shadow: 0 0 20px #c0ebff,
                    0 0 5px #c0ebff;
    }
}
