ul li + li
{
    margin-top: 8px;
}

#HowToWrapper
{
    width: 800px;
}

.HowToHeadline
{
    text-align: center;
    font-family: Nota Sans Bold;
    font-size: 2.5em;
    font-weight: bold;
}

.PageContent
{
    height: 600px;
    padding-top: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: normal;
}

#FAQ_Container
{
    position: relative;
    width: 800px;
    padding-bottom: 40px;
}

.FAQ_Header
{
    background-color: rgba(0,0,0,0.8);
    font-size: 1.7em;
    padding: 4px 10px 4px 10px;
}

.FAQ_Entry
{
    background-color: rgba(0,0,0,0.5);
    height: 60px;
    display: flex;
    padding-left: 25px;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

.FAQ_UnfoldBtn
{
    margin-left: auto;
    margin-right: 25px;
    cursor: pointer;
}

.FAQ_Foldable
{
    background-color: rgba(0,0,0,0.5);
    max-height: 0px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    overflow: hidden;
    padding: 0 35px 0px 35px;
}

.FAQ_Open
{
    max-height: 200px;
    padding: 0 35px 15px 35px;
}

.FAQ_Separator
{
    height: 2px;
    background-color: #fff;
    width: 100%;
}

@media screen and (orientation: portrait)
{
    #HowToWrapper
    {
        width: auto;
        margin: 0px 6vw;
        min-height: calc(100vh - 274px);
    }

    .PageContent
    {
        height: auto;
    }

    #FAQ_Container
    {
        padding-bottom: 0px;
        width: auto;
    }

    .FAQ_Open
    {
        max-height: 400px;
    }

    #FAQSubline
    {
        padding: 0px 4vw;
    }

    .HowToHeadline
    {
        font-size: 180%;
    }
}