        *{
 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: "regular";
}

.nav {
    position: fixed;
    /*width: calc(100% / 8);*/
    width: 270px;
    height: 100%;
    border-right: 1px solid black;
    padding: 20px;
}

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

.imprint:hover {
    color: forestgreen;
}

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

.container {
    display: flex;
    flex-direction: row;
   /* justify-content: space-evenly;*/
    flex-wrap: wrap;
}

figure {
    width: 270px;
    margin: 20px;
}

figcaption {
    margin-bottom: 3px;
}

img {
    position: absolute;
    right: 20px;
    max-width: 500px;
}

p {
    width: calc(100% - 400px);;
}


li {
    list-style: none;
}

.bio:hover {
    color: orange;
}

.worksbyyear {
    color: black;
}

.worksbyyear:hover {
    color: dodgerblue;
}

.videos:hover {
    color: gold;
}

.texts:hover {
    color: hotpink;
}

summary {
    color: dodgerblue;
}

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;
}

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

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

.year:hover {
    color: dodgerblue;
}