body {
    background-color: black;
    color: white;
    font-family: 'futura-pt-heavy', sans-serif;
}

h1, h2 {
    color: #f5f5f5;
}

a {
    color: #1a73e8; /* Links in weiß */
    text-decoration: none; /* Unterstreichung entfernen */
    font-family: 'futura-pt-heavy', sans-serif;
    font-weight: bold; /* Fette Schrift für Links */
}

a:hover {
    color: #1a73e8; /* Ändere die Farbe beim Überfahren mit der Maus */
    text-decoration: underline; /* Unterstreichung beim Hover */
}

form {
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
	width:500px;
}

input[type="text"], input[type="email"], input[type="number"],input[type="password"],input[type="idee"], textarea {
    background-color: #eee;
    color: black;
    border: 1px solid #ccc;
    padding: 5px;
	width: 15em;
    margin-bottom: 5px;
}

button {
    background-color: #1a73e8;
    color: white;
    padding: 8px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #155bb5;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    background-color: #444;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
	width: 200px;
}

