* {
    font-family: Helvetica;
    color: rgb(40, 40, 60);
}
body {
    background-color: rgb(255, 250, 240);
}
a {
    color: inherit;
}
p {
    font-size: 150%;
}
div.card-header {
    font-size: 150%;
    font-weight: bold;
}

nav.navbar a {
    border-bottom: 3px solid rgb(200, 220, 240);
}
nav.navbar a:hover,
nav.navbar a:active,
nav.navbar a.active {
    border-bottom: 3px solid rgb(40, 40, 60);
    color: rgb(40, 40, 40);
}

nav.navbar {
    background-color: rgb(200, 220, 240);
}

div.content-wrapper {
    margin: 50px 0 0 0;
    padding: 20%;
}

div.content-wrapper.admin {
    margin: 120px 0 0 85px;
    padding: 0;
}

div.upload {
    position: absolute;
    top: 70px;
    left: 50%;
    box-shadow:  1px 2px 2px 0px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

div.jumbotron {
    background-image: url("/static/images/jumbotron.jpg");
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
div.jumbotron div.container {
    background-color: rgba(200, 220, 240, 0.7);
    text-align: center;
    overflow-wrap: break-word;
}

@media (min-width: 500px) {
    div.jumbotron div.container h1.jumb {
        font-size: 600%;
    }

    div.jumbotron div.container h2.jumb {
        font-size: 300%;
        font-style: italic;
    }
}

@media (max-width: 499px) {
    div.jumbotron div.container h1.jumb {
        font-size: 240%;
    }

    div.jumbotron div.container h2.jumb {
        font-size: 120%;
        font-style: italic;
    }

    .brand {
        display: none;
    }
}

div.container h1 {
    text-align: center;
    font-weight: bold
}

div.container h2 {
    font-weight: bold
}

div.container div.bullet {
    flex-grow: 0;
    align-self: stretch;
    background-image: url("/static/images/line.svg");
    background-origin: content-box;
    background-repeat: repeat-y;
    display: flex;
}


div.custom-highlight {
    background-color: rgb(200, 200, 210);
}

li.custom-list-item {
    font-size: 150%;
}

ul.kontakt li {
    margin-top: 1em;
}

li p.name {
    font-size: 150%;
    margin-bottom: 0;
}

li p.info {
    font-size: 100%;
    margin-bottom: 0;
}

div.footer {
    background-color: rgb(40, 40, 60);
}

div.footer div.container * {
    color: rgb(200, 200, 210);
}

div.footer div.container div.menu {
    display: flex;
}

div.footer div.container div.menu a {
    font-weight: bold;
    font-size: 120%;
}
div.footer div.container div.menu span.a {
    font-weight: bold;
    font-size: 120%;
    color: rgb(100, 100, 105);
}
div.footer div.container div.content {
    max-height: 50vh;
    overflow-y: auto;
}

@keyframes wiggle {
    20%  { transform: translateX(4px);  }
    40%  { transform: translateX(-4px); }
    60%  { transform: translateX(2px);  }
    80%  { transform: translateX(-1px); }
    100% { transform: translateX(0);    }
}

.wiggle {
    animation: wiggle 1s ease;
    animation-iteration-count: 1;
}

div.pdf-wrapper {
    display: flex;
    flex-direction: column;
}

.pdf-frame {
    height: 600px;
}

.pdf-description {
    padding-left: 10;
}