
body {
            font-family: 'Inter', sans-serif;
			margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: blue;
			overflow: hidden;
        }
        .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            background: white;
			height: 100%;
        }
        .image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            background: black;
			background-image: url("andreas-hielscher.webp");
			background-repeat: no-repeat;
    		background-position: top;
    		background-size: cover;
			height: 50%;
        }
        .image-container img {
            width: 100%;
            max-width: 400px;
        }
        .content {
            padding: 20px;
            text-align: left;
			height: 50vh;
			overflow: scroll;
        }
        h1 {
            font-size: 24px;
            line-height: 1.4;
        }
        h2 {
            font-size: 16px;
            color: blue;
			font-weight: 300;
        }
        p {
            font-size: 14px;
            color: #555;
			width: 80%;
			font-weight: 300;
        }
        .links {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
			margin-bottom: 60px;
			color: gray;
			width: 80%;
        }
        .links div {
            margin-bottom: 15px;
        }
        .links h2 {
            margin-bottom: 5px;
            font-size: 14px;
            font-weight: 300;
        }
        .links a {
            display: block;
            color: gray;
            text-decoration: none;
            font-size: 14px;
			font-weight: 300;
        }
		
		
        @media (min-width: 768px) {
            .container {
                flex-direction: row;
                align-items: center;
                text-align: left;
            }
            .image-container {
                width: 40%;
				height: 100%;
            }
            .content {
                width: 50%;
                padding: 40px;
				height: 100vh;
				align-content: center;
            }
            .links {
                flex-direction: row;
                justify-content: space-between;
            }
        }