/* FARBEINSTELLUNGEN */
:root {
    /* --main-bc: rgb(40, 40, 40); */
    --main-bc: rgb(249, 0, 0);
    --main-fc: rgb(200, 200, 200);
    --footer-bc: #174D99;
    --link-fc: rgb(150, 150, 150);
    --link-hover: rgb(0, 229, 255);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--link-fc);
    text-decoration: none;
}

a {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: var(--main-bc);
    color: var(--main-fc);
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
}

/* ============================================== */
/*    M  A  I  N  -  C  O  N  T  A  I  N  E  R    */
/* ============================================== */
#inf-wrapper {
    /* self */
    width: 100%;
    height: 100%;
    background-image: url(../img/bg-subpages-5.png);
    background-size: 70%;
    background-repeat: repeat;

    /* content */
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    row-gap: 0.3em;
}

/* ============================================== */
/*    N  A  V  I    
/* ============================================== */
#inf-navi {
    /* self */
    width: 90%;
    height: 4em;

    /* content */
    align-content: center;
}

#inf-navi ul {
    /* self */
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 100px var(--link-hover);
    border: 1px solid rgba(0, 200, 250, 0.6);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    margin: 0 0.5em 0 auto;

    /* content */
    display: flex;
    gap: 1em;
    list-style: none;
    text-align: center;
    align-items: center;
    justify-content: center;
}

#inf-navi li {
    width: auto;
    background-color: transparent;
    height: 3em;
    border-radius: 14px;
    align-content: center;
    padding: 0 1.2em;
    transition: border 1s ease-in-out, background-color 300ms ease-in-out;
}

#inf-navi a {
    font-size: 1.3em;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    transition: color 1s ease;
    white-space: nowrap;
}

#inf-navi li:hover {
    border-bottom: 1px dashed var(--link-hover);
    border-top: 1px dashed var(--link-hover);
}

#inf-navi a:hover {
    color: var(--link-hover);
}

.deadlink {
    font-size: 2em;
    color: #001c13;
    text-shadow: 1px 1px 3px rgba(200, 250, 220, 1);
}

/* ============================================== */
/*    C  O  N  T  E  N  T  
/* ============================================== */
#inf-content {
    /* self */
    width: 90%;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 40px var(--link-hover);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    border: 1px solid rgba(0, 200, 250, 0.6);

    /* content */
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 54px;
    text-align: center;
}

#content-title {
    /* self */
    width: 100%;
    height: 20%;
    border-bottom: 1px solid rgba(0, 200, 250, 0.4);

    /* content */
    font-family: "Gruppo", sans-serif;
    font-size: clamp(1em, 5vw, 8em);
    line-height: 1.5;
    align-content: center;
    white-space: nowrap;
    color: var(--main-fc);
}

#content-info {
    /* self */
    width: 80%;
    height: 100%;
    font-family: "Thasadith", serif;
    font-size: clamp(1em, 1vw, 8em);
    letter-spacing: 0.5px;
    color: var(--main-fc);

    /* content */
    align-content: center;
    text-align: justify;
    padding: 0 4em 1.8em;
    overflow: auto;
}

#content-info p {
    margin: 0 0 1em 0;
}

#content-info a:hover {
    color: var(--link-hover)
}

#content-info ul {
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding-left: 1.5em;
}

#content-info table {
    width: 60%;
    margin: 0 auto;
    font-size: clamp(1em, 1.5vw, 8em);
    padding: 1em;
    border-radius: 2em;
    border: 1px dotted #505050;
    box-shadow: 0 0 1em rgba(200, 200, 200, 0.2);
}

#content-info table td,
th {
    padding-left: 1em;
}

#content-info table a {
    color: var(--main-fc);
}

.leerzeile {
    height: 4em;
}

.tel-number a {
    width: 100%;
    text-decoration: none;
    color: rgba(0, 200, 250, 0.8);
    font-size: 1em;
}

.tel-number a:hover {
    color: var(--link-hover)
}

.nogo {
    color: rgb(223, 10, 109);
}

.tab-titel {
    text-transform: uppercase;
    color: rgba(0, 200, 250, 0.8);
    letter-spacing: 0;
}

.no-uppercase {
    text-transform: none;
}

#content-info h1{
    font-size:2.5em;
    margin-bottom :1em;
}

#content-info p.spenden-text {
    font-size: 1.3em;
}

#content-info p.pink-text {
    color: rgb(223, 10, 109);
    text-indent: 2em;
    font-weight: bold;
}

/* Chromium-Scrollbar-Style */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(223, 10, 109, 1);
    border-radius: 4px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}