body {
    display: grid;
}
/* 2-spaltiges Layout für breitere Viewports */

@media (min-width: 30em) {
    body {
        grid-template-columns: 10em 5fr;
        grid-template-rows: auto 1fr min-content;
    }
}

header,
nav,
footer,
main1 {
    grid-column: 1 / -1;
}

header {
    background: rgb(240, 212, 161);
    display: grid;
    grid-template-columns: min-content 1fr;
}

header #aboutMe {
/*    background: yellow;*/
    animation: flip 5s infinite;
    animation-delay: 0s;
    animation-timing-function: linear;
}

@keyframes flip {
    from {
        transform: perspective(100px);
    }
    to {
            transform: perspective(100px) rotateY(360deg);
    }
}

header #backlink {
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    font-family: sans-serif;
    text-decoration: none;
    color: black;
}

nav {
    padding: 0.5em;
    background-color: rgb(255, 200, 255);
}

nav a {
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    color: black;
}

main {
    background: #ffede0;
    border-color: #df6c20;
}

main #code {
    background: lightgrey;
    font-family: Courier New;
}

aside {
    padding: 10px 10px;
    background: #ebf5d7;
    border-color: #8db243;
}

aside p {
    margin: 0px;
}

aside #sub {
    padding: 0px 10px;
}

footer {
    background: #e4ebf2;
    border-color: #8a9da8;
}

footer * {
    float: right;
    clear: right;
    margin: 0 0 1em;
}

body {
    margin: 0 auto;
    font-family: sans-serif;
}

header,
nav,
main,
main1,
article,
section,
footer {
    padding: 10px;
}

li {
    display: inline-block;
    list-style-type: none;
}

li:not(:first-child)::before {
    content: '----';
}

audio {
    padding: 5px 0px;
    width: 100%;
}

table {
  width: 100%;
  table-layout: fixed;
  background: yellow;
}

.row1 {
    line-height: 14px;
    font-size: 14px;
}
.row2 {
    line-height: 20px;
    font-size: 20px;
}
.row3 {
    line-height: 30px;
    font-size: 30px;
}
.row4 {
    line-height: 50px;
    font-size: 50px;
}
.row5 {
    line-height: 50px;
    font-size: 50px;
}
.row6 {
    line-height: 30px;
    font-size: 30px;
}
.row7 {
    line-height: 20px;
    font-size: 20px;
}
.row8 {
    line-height: 14px;
    font-size: 14px;
}

found {
    color: red;
    font-weight: bold;
}

td {
    text-align: center;
}

table, th, td {
/*  border: thin solid black;*/
/*  border-collapse: separate;*/
}

code {
    font-family: Courier New;
    font-weight: bold;
}
