        *{
 margin : 0;
 padding: 0;
 box-sizing: border-box;
}

@font-face {
    src: url("../assets/font/ABCDiatype-Regular.otf");
    font-family: "regular";
}

@font-face {
    src: url("../assets/font/ABCDiatypeMono-Regular.otf");
    font-family: "mono";
}



body {
   /* font-family: "diatype";*/
   font-family: "regular";
}

.nav {
    position: fixed;
    width: 270px;
    height: 100%;
    border-right: 1px solid black;
    padding: 20px;
}

.videos {
    color: gold;
}

.imprint {
    position: absolute;
    bottom: 0;
    margin-bottom: 20px;
}

li {
    list-style: none;
}

details > summary {
   list-style: none;
 }

details > summary::-webkit-details-marker {
   display: none;
 }

details {
    cursor: pointer;
}

span {
    display: inline-block;
    width: 50px;
    font-family: "mono";
    margin-bottom: 3.5px;
}

.content {
    position: absolute;
    height: 100%;
    width: calc(100% - 270px);
    margin-left: 270px;
    padding: 20px;
}

.home:hover {
    color: black;
}

.year:hover {
    color: dodgerblue;
}

.bio:hover {
    color: orange;
}

.texts:hover {
    color: hotpink;
}

.imprint:hover{
    color: forestgreen;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.gold:hover {
    color: gold;
}

.number {
    font-family: "mono";
}

td {
    margin-left: 20px;
    cursor: pointer;
    vertical-align:top;
    margin-right: 30px;
}

tr:hover {
    color: gold;
}

.td-title {
    width: 80%;
}

.td-filmed, .td-year {
    width: 15%;
}

@media screen and (max-width: 704px) {
    
td {
    padding-bottom: 10px;
}

.td-year {
    display: none;
}


}

