@font-face {
    font-family: 'Analogue';
    src: url('/fonts/AnalogueOS-Regular.woff2') format('woff2'),
         url('/fonts/AnalogueOS-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'MatrixSans Print';
    src: url('/fonts/MatrixSans-Print.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'MatrixSans Regular';
    src: url('/fonts/MatrixSans-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'MatrixSans Screen';
    src: url('/fonts/MatrixSans-Screen.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'MatrixSans Video';
    src: url('/fonts/MatrixSans-Video.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }


* {
    background-color: black;
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11pt;
    cursor: url('../img/Synthwave\ Normal\ Select.png'),auto;
}

h1 {
    color: aqua;
}

a {
    color: rgb(154, 154, 252);
    transition: 0.1s;
}

a:hover {
    color: goldenrod;
    background-color: gray;
    font-size: large;
    cursor: url('/img/GTA\ 5\ Web\ Cursor.png'),auto;
}

li:hover {
    color: rebeccapurple;
}

.unwatched li::before {
    content: "\1F518  ";
}

.unwatched li:hover::before {
    content: "\1F440  ";
}

.watched li::before {
    content: "\2705  ";
}

.watching {
    color: yellow;
}

.watching::after {
    content: " (watching)";
}

.ghibli:hover::after {
    content: " (studio ghibli)";
    color: aquamarine;
}

.movie:hover::after {
    content: " (movie \1F37F)";
    color: aquamarine;
}

th {
    padding: 5px;
    background-color: rgb(139, 156, 187); color:black ;
}

td {
    padding: 3px;
    border-bottom: 1px solid rgb(63, 39, 85);
}

table {
    border: 1px solid gray;
}

td:nth-child(2) {
    width: 6em;
    text-align: center;;
}

.sidenav {
    height: auto; /* 100% Full-height */
    width: 10%; /* 0 width - change this with JavaScript */
    position: fixed; /*Stay in place*/
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: black; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    margin-top: 1em; /* Place content 1em from the top */
    margin-left: 1em;
    transition: 0.6s; /* 0.5 second transition effect to slide in the sidenav */
    border: 1px solid gray;
}

.sidenav a {
    color: aqua;
    display: block;
    transition: 0.1s;
}

.sidenav #header {
    background-color: rgb(139, 156, 187);
}

.sidenav table {
    border: none;
    width: 100%;
}

.textlist {
    padding-top: 5em;
    margin-left: 15%;
    margin-right: 15%;
}

.textlist table {
    margin: auto; 
    margin-bottom: 1em;
    width: 100%;
}

.sidenav .navigation a {
    color: magenta;
}

.divline {
    border: 1px solid gray;
    margin-top: 20px;
    margin-bottom: 20px;
}

code {
    color: darkgray;
}

.filterdiv {
	border: 1px solid #fc036b;
	background-color: #2e2e2e;
	margin-bottom: 10px; 
	padding:10px;
}

.filterdiv * {
	background-color: #2e2e2e;
}

.filterdiv h2 {
	text-align: center;
}

#titletext {
    font-family: 'MatrixSans Print','IBM Plex Mono', monospace;
    text-shadow: 0 0 10px #C8C8C8;
    text-transform: uppercase;
}

.banner {
    width: 33%;
    margin: auto;
    text-align: center;
}

@media all and (max-width: 1080px) {
    /* * {
        font-size: 20pt;
    } */
    .sidenav {
        position: relative;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    /* .sidenav table td a {
        font-size: 30pt;
    }
    a:hover {
        font-size: 20pt;
    } */

    .textlist {
        margin: 0px;
    }

    table td {
        padding: 10px;
    }

    .banner {
        width: 100%;
    }
    
  }
  
