body {
    font-family: 'Poiret One', sans-serif;
    background-color: black;
    margin: 0;
    overflow: hidden;
    color: #666666; /* Dunkleres Grau */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    text-align: left;
    padding-top: 20px; /* Abstand von 20px zum oberen Rand */
}

.center-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: top;
    color: white;
    width: 400px;
}

.center-content h1 {
    margin-bottom: 3px; /* Reduziere den Abstand nach Bedarf */
}

.logo {
    width: 150px;
    height: auto;
    color: white;
}

.slogan {
    margin-top: 3px; /* Reduziere den Abstand nach Bedarf */
    font-size: 1em;
    color: #FFFFFF;
}

.off-canvas-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #666666; /* Dunkleres Grau */
}

.off-canvas-menu .menu-content {
    display: none;
    flex-direction: column;
    background-color: black;
    position: absolute;
    top: 40px;
    right: 0;
}

.off-canvas-menu .menu-content a {
    color: #666666; /* Dunkleres Grau */
    padding: 10px;
    text-decoration: none;
}

.off-canvas-menu .menu-content a:hover {
    color: white;
}

.off-canvas-menu a {
    color: #666666; /* Dunkleres Grau */
    padding: 10px;
    text-decoration: none;
}

.off-canvas-menu a:hover {
    color: white;
}

.homebutton {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #666666; /* Dunkleres Grau */
}

.homebutton a {
    color: #666666; /* Dunkleres Grau */
    text-decoration: none;
}

.homebutton a:hover {
    color: white;
}

.homebutton a:active {
    color: white;
}

.footer-links {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666666; /* Dunkleres Grau */
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

textarea {
    width: 300px;
}