* {
            transition: all 0.3s;
        }
        .container {
            display: grid;
            place-items: center;
            height: 15vh;
            background: #333;
        }
        .links {
            top: 100px;
            margin-bottom: 10px;
        }
        div {
            display: grid;
            place-items: center;
        }
        body {
            font-family: Arial, sans-serif;
            text-align: center;
            margin-top: 20px;
            background: #333;
            color: white;
        }
        footer {
            background: #222;
            color: white;
            text-align: center;
            padding: 1px;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
        }
        footer p {
            line-height: 1;
            font-size: 14px;
        }
        footer a {
            line-height: 1;
            font-size: 14;
            color: white;
        }
        nav {
            font-size: 25px;
            text-align: center;
            color: white;
            line-height: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;    
        }
        nav ul {
            list-style-type: none;
            padding-left: 0;
        }
        nav a {
            color: white;
            display: block;
            border: 3px solid black;
            border-radius: 10px;
            padding:10px;
            margin: 0 auto;
            margin-bottom: 3px;
            max-width: 500px;
            width: calc(100% - 40px);
            box-sizing: border-box;
            line-height: 1;
            background: linear-gradient(to bottom right, #0084ff, #920097);
            text-decoration: none;
        }
        nav a:hover {
            color: #5bb;
            cursor:pointer;
            text-decoration: underline;
        }
        button {
            color: white;
            display: block;
            border: 3px solid black;
            border-radius: 10px;
            padding:10px;
            margin: 0 auto;
            margin-top: 3px;
            margin-bottom: 10px;
            max-width: 100px;
            width: calc(100% - 40px);
            box-sizing: border-box;
            line-height: 1;
            background: linear-gradient(to bottom right, #0084ff, #920097);
        }
        input {
            color: white;
            display: inline;
            border: 3px solid black;
            border-radius: 10px;
            padding:10px;
            margin: 0 auto;
            margin-top: 3px;
            margin-bottom: 10px;
            max-width: 200px;
            width: calc(100% - 40px);
            box-sizing: border-box;
            line-height: 1;
            background: linear-gradient(to bottom right, #0084ff, #920097);
        }
        input::placeholder {
            color: #222;
        }
        button:hover {
            color: #5bb;
            cursor: pointer;
        }
        nav a:hover {
            color: #5bb;
        }
        .projekt {
            margin-bottom: 0;
        }
        p {
            margin-top: 10px;
        }
        .container p {
            position: fixed;
            bottom: 50px;
            background-color: #333;
            padding-bottom: 10px;
            padding-top: 10px;
        }
        h1 {
            margin-top: 80px;
        }
        #hoch {
            position: fixed;
            bottom: 105px;
            right: 10px;
            padding: 5px 10px;
            background-color: #007bff;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 12px;
            cursor: pointer;
            display: none;
            opacity: 0.8;
        }
        #hoch:hover {
            background-color: #0056b3;
        }