* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Segoe UI, Trebuchet MS, Geneva, sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: #E5C07B;
    text-overflow: ellipsis;
}
a {
    cursor: pointer;
}
html, body {
    min-height: 100vh;
    background-color: #282C34; /* Farbe von Atom One Dark  */
}
body {
    position: absolute;
    top: 0px;
    left: calc(50% - 384px);
    width: 768px;
}
/* --------------------- main ------------------------ */
main > * {
}

main {
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-rows: 130px 60px 1fr 40px;
    grid-template-areas: "oben" "navi" "content" "unten";
}

/* --------------------- header ------------------------ */
header {
    grid-area: oben;
    border-bottom: 1px solid #ABB2BF;
}
#githublogo {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 80px;
    right: 15px;

}
#home {
    display: block;
    width: 200px;
}
#home #titletext {
    text-decoration: none;
    color: #61AFEF;
    display: block;
    font-size: 36px;
    width: 200px;
    margin: 5px 15px;
}


/* --------------------- menu ------------------------ */

menu {
    text-align: center;
    grid-area: navi;
    border-bottom: 1px solid #ABB2BF;
}
menu li {
    list-style: none;
    display: inline-block;
    margin: 1px 8px;
}
menu li a {
    line-height: 56px;
    font-weight: bold;
    font-size: 1.4rem;
}

/* --------------------- section ------------------------ */
section {
    grid-area: content;
    overflow-y: scroll;
    overflow-x: clip;
}
section a {
    color: #E06C75;
}


/* --------------------- footer ------------------------ */

footer {
    grid-area: unten;
    text-align:center;
}

#closeEx {
    display: none;
}

#art {
    display: block;
    margin: 30px 30px;
    width: calc(100% - 50px);
    padding: 20px 10px;

}
#art p {
    display: block;
    font-size: 1.2rem;
    line-height: 30px;
    text-wrap: wrap;
}

#preview {
    text-align: center;
    font-weight: bold;
    padding: 15px 0px 5px 0px;
    font-size: 1.7rem;
    color: #E06C75;

}
.prev {
    height: 170px;
    width: calc(100% - 60px);
    margin: 30px 30px;

}
.prev_cap {
    border-bottom: 2px solid #61AFEF;
    width: 100%;
    height: 40px;
    line-height: 38px;
    padding: 0px 10px;
    font-size: 1.2rem;
    overflow: clip;
    text-wrap: no-wrap;
    cursor: pointer;
}
.prev_text {
    display:block;
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 130px;
    padding: 7px;
}
