/* antic-didone-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Antic Didone';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/antic-didone-v16-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body{
    background-color: #EBDEFC;;
}

.footer {
    background-color: #000000;
    color: #EBDEFC;
    text-align: center;
    padding: 1.5em;
    font-family: 'Antic Didone';
    font-size: 16px;
    margin-top: 3em;
}

.footer a {
    color: #EBDEFC;
    text-decoration: underline;
}

.footer a:hover {
    color: #ffffff;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
    margin: 3em auto;
    flex-wrap: wrap;
    padding: 1em;
    max-width: 1200px;
}

.ich-section {
    flex: 1 1 45%;
}

.ich-fotos-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
}

.ich-bild {
    width: 100%;
    max-width: 300px;
    border-radius: 0.5em;
    filter: grayscale(70%);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.ich-bild:hover {
    filter: none;
    transform: scale(1.03);
}

.text-about {
    flex: 1 1 45%;
    font-family: 'Antic Didone';
    font-size: 18px;
    line-height: 1.6;
    text-align: left;
}

h3 {
    font-size: 20px;
    font-family: 'Antic Didone';
    text-align: center;
}

img:hover {
    border-radius: 0.5em;
    margin: 0.7em;
    filter: none;
    transform: scale(1.03);
}

img {
    border-radius: 0.5em;
    margin: 0.7em;
    filter: grayscale(70);
    transition: filter 0.3s ease, transform 1s ease;
}

.navigation {

    display: flex;

    background-color: #000000
}


.navigation li {

    list-style-type: none;

}


.navigation a {

    padding: 2em;

    display: inline-block;

    color: #ffffff;

    text-decoration: none;
    font-family: 'Antic Didone';

}


.navigation a:hover,
#akt_tab {

    background-color: #EBDEFC;
    color: #000000
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: center;
    }
    .text-about {
        text-align: center;
    }
    .navigation a {
        padding: 1em;
    }
}

