nav {
    overflow: hidden;
    background-color: rgba(255, 255, 255);
    padding: 30px 10px;
    /* Large padding which will shrink on scroll (using JS) */
    transition: 0.4s;
    /* Adds a transition effect when the padding is decreased */
    position: fixed;
    /* Sticky/fixed navbar */
    width: 100%;
    box-sizing: border-box;
    top: 0;
    /* At the top */
    z-index: 99;
}

html {
    scroll-padding-top: 80px;
}

.titelbild {
    margin-top: 90px;
    flex-grow: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    /* transform: rotate(180deg); */
}

.headline {
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: transparent;
    color: white;

    backdrop-filter: blur(30px);
    color: black;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;

}

.headline h1 {
    color: white;
    margin-bottom: 0;
}

.headline h2,
.headline h3,
.headline h4 {
    color: white;
}

.headline-description {
    max-width: 80%;
}

.headline-description h4 {
    text-indent: -0.8em;
    background-color: rgba(0, 0, 0, 0.2);
    min-height: 50px;
    display: flex;
    align-items: center;
    padding-left: 1.7em;
    padding-right: 1em;
}

h1 {
    display: flex;
    color: black;
    justify-content: center;
}

h2 {
    display: flex;
    justify-content: center;
}

h3 {
    font-weight: 400;
}



#inactive {
    color: rgb(179, 179, 179);
}

.row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 4px;
}

.collumn {
    flex: 25%;
    max-width: 50%;
    padding: 0 4px;
}

.collumn img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        flex: 100%;
        max-width: 100%;
    }

    aside {
        display: none;
    }

    main {
        flex-basis: 100% !important;
        padding: 5px;
    }

    #email {
        display: none;
    }
}

.second-page {
    display: flex;
    gap: 10px;
    flex-direction: row;
    background-color: white;
}

aside {
    flex-basis: 20%;
    /* position: fixed; */
    background-color: rgb(255, 255, 255);
}

aside ul {
    position: sticky;
    top: 100px;
    margin-top: 100px;
    padding: 0;
    list-style-type: none;
}

aside ul li {
    display: flex;
    justify-content: flex-start;
}

aside ul li a {
    text-decoration: none;
    color: darkslateblue;
    padding: 20px;
}

aside ul li a:hover {
    font-weight: 600;
}

main {
    flex-basis: 80%;
}

img {
    max-width: 90vw;
}