.TextSection
{
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 1rem 1rem 1rem 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

h1, h2, h3, h4, h5, p, ul, ol
{
    overflow-wrap: break-word;
    word-break: break-word;
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.CenterText
{
    text-align: center;
}

.Indented, .TextSection .Indented
{
    margin-left: 5rem;
}

.PageH1Area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding:0;
}

.PageH1Area .ImgContainer {
    width: 256px;
    margin: 0;
    padding: 0;
}

.PageH1Area h1{
    color: black;
    margin: 0;
    padding: 0;
}

h1
{
    font-family: 'Roboto Mono';
    font-size: 3rem;
    color: #da4219;
}

h2
{
    font-family: 'Roboto Mono';
    font-size: 2rem;
    color: #da4219;
}

h3
{
    font-family: 'Roboto Mono';
    font-size: 1.5rem;
    color: #da4219;
}

h4
{
    font-family: 'Roboto Mono';
    font-size: 1.25rem;
    color: #000000;
}

h5
{
    font-family: 'Roboto Mono';
    font-size: 1.15rem;
    color: #000000;
}

p, ul, ol
{
    font-family: 'Inter-Variable';
    font-size: 1.15rem;
    color: #000000;
    text-align: justify;
}

ul, .KlappListe
{
    list-style: none;
}

li
{
    margin-bottom: 0.8rem;
    overflow-wrap: break-word;
}

ul li::before, .KlappListe li::before
{
    content: "▶";
    color: #da4219;
    display: inline-block;
    margin-left: -1rem;
}

.KlappListe li
{
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    overflow-wrap: break-word;
    cursor: pointer;
    overflow: hidden;
}

.KlappListe li strong
{
    transition: color 0.5s ease;
}

.KlappListe li:hover strong
{
    color: #43c463;
}

.Details
{
    display: none;
}

.ShowDetails
{
    transform: translateY(0%);
    opacity: 1;
}

.DreiPunkt
{
    padding-left: 5px;
}

a
{
    text-decoration: none;
    font-family: 'Inter-Variable';
    color: #000000;
    text-align: center;
    transition: color 0.5s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}
a:hover
{
    color: #da4219;
}

header p
{
    font-family: 'Roboto Mono';
    font-size: large;
    color: #da4219;
    text-align: justify;
    overflow-wrap: break-word;
    word-break: break-word;
}

.BackToTop
{
    display: inline-block;
    padding: 5px 10px;
    font-family: 'Roboto Mono';
    font-size: 1rem;
    background-color: #43c463;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}
.BackToTop:hover
{
    background-color: #da4219;
    color: #fff;
}
.RightAligned
{
    display:flex;
    flex-direction: row;
    justify-content: end;
}
.Overview
{
    background: linear-gradient(to left, rgba(67, 196, 99, 0.9), rgba(255, 255, 255, 0.0));
    border-radius: 1rem 1rem 1rem 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    overflow-wrap: break-word;
    word-break: break-word;
}
.Overview li 
{
    font-family: 'Roboto Mono';
    font-weight: bold;
    overflow-wrap: break-word;
    word-break: break-word;
}
@media screen and (max-width: 1000px)
{
    h1, h2, h3, h4, h5, p, ul, ol {
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4, h5 {
        font-size: 1.15rem;
    }
    p, ul, ol {
        text-align: left;
    }
    .Indented, .TextSection .Indented {
        margin-left: 2rem;
    }
    .TextSection {
        padding-left: 1.5rem;
    }
}
