body {
    margin: 0px;
    background-color: rgb(255, 208, 0);
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
}

nav {
    background-color: orangered;
    padding: 30px;
    display: flex;
    justify-content: left;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: black;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    margin-right: 20px;
}

.container {
    margin: 40px;
    padding: 20px;
    background-color: white;
    position: relative;
    /* Moderner, dezenter Schatten */
    /*
    box-shadow: 
        0 0 24px 0 rgba(0,0,0,0.18), 
        0 0 6px 0 rgba(0,0,0,0.15);
    */
    box-shadow: 
        0 0 12px 0 rgba(0, 0, 0, 0.4);
    transition: 
        all 0.1s ease;
}

.container:hover {
    transform: scale(1.01);
    box-shadow:
        0 0 16px 4px rgba(0,0,0,0.2);
}

.special-container {
    border: 1px;
    border-style: solid;
    border-color: black;
}

.text {
    margin: 40px;
}

.shadow {
    text-shadow: 4px 4px 5px black; 
}

h1 {
    color: orangered;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 32px;
}

h2 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 32px;
}

h3 {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 24px;
}

h4 {
    font-weight: bold; 
    font-size: 24px;
}

h5 {
    font-weight: bold;
    font-size: 20px;
}

h6 {
    font-weight: normal; 
    font-size: 20px;
}

a {
    color: blue;
}

p, li, td, th {
    font-family: inherit;
    font-size: inherit;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
}

.gallery div {
    width: 100px;
    height: 100px;
    min-width: calc(10vw - 62px);
    min-height: calc(10vw - 62px);
    margin: 30px;
    background-color: orangered;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.1s ease;
}

.gallery div:hover {
    width: 120px;
    height: 120px;
    min-width: calc(10vw - 62px + 20px);
    min-height: calc(10vw - 62px + 20px);
    margin: 20px;
}

.gallery a {
    color: black;
    text-decoration: none;
    font-weight: bold; 
}

code {
    background-color: lightgrey;
}

.footer {
    background-color: orangered;
    padding: 20px;
    padding-left: 30px;
}

details {
    padding: 8px;
    background-color: orangered;
    margin: 8px;
}

.two-sides {
    margin: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.two-sides div {
    width: 30vw;
    max-width: 8cm;
    height: 60vh;
    max-height: 48vw;
    margin: 10px 0px;
    background-color: orangered;
    transition: all 0.1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-sides div:hover {
    width: calc(30vw + 20px);
    max-width: calc(8cm + 20px);
    height: calc(60vh + 20px);
    max-height: calc(1.6 * 30vw + 20px);
    margin: 0px 0px;
}

.two-sides a {
    text-decoration: none;
}