/********************************************************************************************************************************************/
/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Science+Gothic:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Fonts */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* IDs */

#headerID
{
}

/* IDs */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Generic */

html, ::before, ::after
{
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body
{
    margin: 0;
    padding: 0;
}

p
{
    text-align: justify;
    line-height: 1.4;
}

img
{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.pageWidthLimit
{
    margin: 0 auto;
    padding-left: 5px;
    max-width: 1400px;
}

.pageTwoColumns
{
    display: grid;
    grid-template-columns: 1fr 350px;
    align-items: start;
    gap: 80px;
}

a { color: #1896b6; }
a:visited { color: #5eb815; }
a:hover { color: #FA452C; }
a:active { color: #FA452C; }
:target { background-color: #f5e55b; }

/* Generic */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Header */

.header
{
    .homeNavi
    {
        margin: 0;
        padding-top: 1px;
        padding-bottom: 10px;
        padding-left: 5px;
        background: linear-gradient(180deg, rgb(123, 191, 255), white);

        h1
        {
            font-size: 16px;
            font-family: "Science Gothic", sans-serif;
            font-weight: bold;


            a
            {
                color: black;
                text-decoration: none;
            }

            a:hover
            {
                color: #FA452C;
            }

            a:active
            {
                color: #FA452C;
            }
        }
    }

    .topNavi
    {
        margin-top: -15px;
        margin-bottom: 0;
        padding: 0 0 0 5px;
        display: flow-root;
        justify-content: space-between;


        .icon
        {
            margin-left: -40px;
            margin-right: 20px;
            float: left;
        }

        .siteTitle
        {
            font-family: "Science Gothic", sans-serif;
            font-size: 60px;
            font-weight: bold;
            text-align: left;
            margin: 20px 0 0 0;
            padding: 0;


            a
            {
                color: black;
                text-decoration: none;
            }

            a:hover
            {
                color: white;
            }

            a:active
            {
                color: white;
            }
        }

        .siteSubTitle
        {
            font-family: "Science Gothic", sans-serif;
            font-size: 25px;
            text-align: left;
            margin-top: -15px;
            padding: 0;
        }
    }

    .globalNavi
    {
        font-size: 14px;
        font-family: "Science Gothic", sans-serif;
        background: linear-gradient(0deg, rgb(154, 154, 154), white);


        menu
        {
            border-bottom: none;
            display: flex;
            flex-flow: row nowrap;
            justify-content: left;
            gap: 70px;
 
            li
            {
                padding: 16px 0;
                list-style-type: none;
                text-align: center;
                border-top: none;
            }
        
            a
            {
                color: black;
                text-decoration: none;
            }

            a:hover
            {
                color: #FA452C;
            }

            a:active
            {
                color: #FA452C;
            }
            
            a.current
            {
                color: #f9fc77;
            }
        }
    }
}

/* Header */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Page rayout */

main
{
    margin: 50px 0 0 0;
    padding: 0;


    .mainColumn
    {
        order: 0;
    }

    .sideBar
    {
        order: 1;
        position: sticky;
        top: 30px;
        align-self: self-start;


        .sideNavi
        {
            font-size: 18px;
            margin: 0 0 50px 0;
            border: 1px solid #23ABA4;
            border-radius: 8px;
            padding: 0;
            width: 100%;
            list-style: none;
            background: #F4F4F4;


            li
            {
                border-bottom: 1px solid #23ABA4;


                &:last-child
                {
                    border-bottom: none;
                }
                    
                &:hover
                {
                    background: #E4E4E4;

                    &:first-child
                    {
                        border-radius: 8px 8px 0 0;
                    }

                    &:last-child
                    {
                        border-radius: 0 0 8px 8px;
                    }
                }

                a 
                {
                    display: block;
                    padding: 15px 35px;
                    text-decoration: none;
                    color: #23ABA4;
                }
            }
        }

        .sideNews
        {
            margin: 0 0 50px 0;
            background: rgb(221, 255, 187);
            border-left: 5px solid rgb(84, 193, 16);
            border-radius: 8px;


            h1
            {
                padding: 10px 20px 0 20px;
                font-size: 25px;
            }

            p
            {
                padding: 0 20px 10px 20px;
                font-size: 16px;
            }            
        }

        .sideNote
        {
            margin: 0 0 50px 0;
            background: rgb(252, 250, 180);
            border-left: 5px solid rgb(240, 207, 21);
            border-radius: 8px;


            h1
            {
                padding: 10px 20px 0 20px;
                font-size: 25px;
            }

            p
            {
                padding: 0 20px 10px 20px;
                font-size: 16px;
            }
        }
    }
}

/* Page rayout */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Page title */

.pageTitle
{
    margin-bottom: 80px;

    strong
    {
        font-size: 40px;
        font-weight: normal;
    }

    h1
    {
        font-size: 40px;
        font-weight: normal;
    }

    .pageThema
    {
        margin: 20px 0;
        padding: 30px 0;
        color: white;
        background: rgb(120, 120, 120);
    }
}

/* Page title */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Footer rayout */

.footer
{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    min-height: 50px;
    font-size: 14px;
    color: white;
    background: rgb(120, 120, 120);
    margin: 80px 0 0 0;
    padding: 20px 0 10px 0;
}

/* Footer rayout */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Tables */

table
{
    border: 3px solid black;
    border-collapse: collapse;


    caption
    {
        font-size: 35px;
        font-weight: normal;
        text-align: left;
        margin-bottom: 10px;
    }

    thead
    {
        background: #b7b5b1;
        border-bottom: 3px solid #0E312F;
    }

    th
    {
        font-size: 18px;
    }

    th, td
    {
        text-align: left;
        vertical-align: middle;
        padding: 0.7em 0.7em 0.8em 0.7em;
        border: 1px solid #D9D9D9;

        &:nth-child(1)
        {
            width: 600px;
        }
    }

    tbody tr
    {
        &:nth-child(2n)
        {
            background-color: #d4d3d2;
        }
    }
}

/* Tables */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Accordions */

.details
{
    margin: 10px 0px 10px 40px;

    summary
    {
        font-size: 25px;
        font-weight: nornal;
    }

    .content
    {
        margin-left: 30px;
        margin-bottom: 20px;
    }
}

/* Tables */
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/********************************************************************************************************************************************/
/* Accordions */