html,
body {


    background-color: #f0f0f0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
}

body {

    padding: 20px;
}

.header, .header .intro, .header .app {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;


    font-size: 16px;
    
    div {
        margin-top: 10px;
    }
    
    margin-bottom: 20px;

}

.impressum {

    margin-top: 40px;
    margin-bottom: 40px;
    
    font-size: 24px;
    font-weight: 100;

}

div.small {
    margin-top: 5px;
    font-size: 16px;
    font-weight: 200;
}

.content-area {

    display: flex;
    flex-direction: column;

    .title-container {
        display: flex;
        flex-direction: column;


        align-items: center;

        margin: 20px;

        img {

            border: 1px solid #d0d0d0;
            border-radius: 10px;
        }

        h1 {

            font-size: 48px;
            font-weight: 100;

            margin: 10px 0px 5px 0px;
        }

        h2 {
            font-size: 18px;
            font-weight: 400;
            margin: 0;
        }
    }

    .item-container {


        display: flex;
        flex-direction: row;
        flex-wrap: wrap;


        gap: 20px;

        .item {

            display: flex;
            flex-direction: column;

            align-items: center;

            &:hover {
                background-color: #e0e0e0;
            }

            border-radius: 10px;
            border: 1px solid #d0d0d0;

            padding: 20px;

            color: black;
            text-decoration: none;

            .title {
                margin-top: 20px;
                font-size: 24px;
                font-weight: 100;


            }
        }
    }

}