    body,h1,h2 {
            margin: 0px;
            padding: 0px;
            font-family: 'Helvetica-Light', sans-serif; /* Arial */
            font-weight: 200;
            margin-bottom: 10px;
    }

    h1 {
            font-weight: 400;
            margin-top: 30px;
            margin-bottom: 20px;
    }
    
    h2 {
            font-weight: 100;
            margin-top: 0px;
            margin-bottom: 10px;
            font-size: 20px;
    }

    .project {
            margin-bottom: 10px;
            margin-top: 30px;
	}
    
/*
    .project img {
       	    position: relative;
            flex: 0 0 auto;
            width: calc(50% - 4px);
            margin: 0px;
    }
*/

    .images {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
    }
    
    .project img {
            width: calc(50% - 4px);
            height: auto;
            display: block;
    }

/*
    .project img:hover {
            filter: brightness(70%); /* Schattierung *//*
            content: attr(title);
    }
*/

    @media (hover: hover) and (pointer: fine) {
            .project img:hover {
            filter: brightness(70%);
            }
    }

    .project-text {
            width: 60%;
            float: left;
            margin-left: 5px;
    }

/* Vorherige Lösung nur mit hover
-----------------------------------------------------------------------------
    .dropdown {
            position: absolute;
            top: 20px;
            right: 100px;
    }

    .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fafafa;
            min-width: 150px;
    }
    .dropdown:hover .dropdown-content {
            display: block;
    }

    /* Einstellung der Flaechen der Elemente im Dropdown Menu */
/*
    .dropdown-content a {
            color: black;
            padding: 11px 15px;
            text-decoration: none;
            display: block;
    }
	/* Einstellung beim Drueberfahren eines Flaechenelements im Dropdown Menu */
/*
    .dropdown-content a:hover {
            background-color: #FF0000;   #F6CECE 
    }
---------------------------------------------------------------------------------
*/

    .dropdown {
            position: absolute;
            top: 10px;
            right: 50px;
            text-decoration: none !important;
            color: black !important;
    }
    
    .dropdown > a {
            all: unset;
            cursor: pointer;
            color: black;
            font-size: 18px;
            padding: 10px 15px;
            display: inline-block;
    }

    .dropdown-content {
            display: none;
            position: absolute;
            background-color: #fafafa;
            min-width: 150px;
            text-decoration: none !important;
            color: black;
    }

    .dropdown.open .dropdown-content {
            display: block;
    }

    /* Einstellung der Flaechen der Elemente im Dropdown Menu */
    .dropdown-content a {
            color: black !important;
            padding: 11px 15px;
            text-decoration: none !important;
            display: block;
    }

    /* Einstellung beim Drueberfahren eines Flaechenelements im Dropdown Menu */
    .dropdown-content a:hover {
            background-color: #FF0000; /* #F6CECE */
            color: black;
            text-decoration: none;
    }


    .line {
    height: 1px;
    background-color: black;
    margin: 30px 0;
    }

    ul {
    list-style-type: square; /* oder circle, square,disc */
    margin-left: 40px;
    font-size: 18px;
    }

    p {
    font-size: 18px;
}