body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Setze die Höhe des Viewports auf 100% der Bildschirmhöhe */
    background-color: #121212;
    color: #D8D8D8;
	
}

.container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #D8D8D8;
}

p {
    color: #bbbbbb;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.btn {
    text-decoration: none;
    color: white;
    background-color: #6c757d;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}



.btn:hover {
    background-color: #575D62;
}

.trademark {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: #666;
}
