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

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

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

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

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

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

.imprint:hover {
    color: forestgreen;
}

li {
    list-style: none;
}

details > summary {
   list-style: none;
 }

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

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

/*.year {
    font-family: "diatype";
}*/

.home {
    cursor: pointer;
}

.year:hover {
    color: dodgerblue;
}

.bio:hover {
    color: orange;
}

.works:hover {
    color: dodgerblue;
    cursor: pointer;
}

.videos:hover {
    color: gold;
}

.texts:hover {
    color: hotpink;
}

.contact:hover {
    color: green;
}

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

.mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    display: none;
}

.mobile-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    display: none;
}

@media screen and (max-width: 704px) {
    
    .mobile, .mobile-text {
        display: block;
    }


}

