/* Schriftart hinzufgen */
body {
    font-family: 'Poiret One', sans-serif;
    background-color: black;
    margin: 0;
    overflow: hidden;
    color: #666666; /* Dunkleres Grau */
}


.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}


.center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
	
}


.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: 1.5em;
	color: #FFFFFF;
	letter-spacing: 2px;
}

.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;
	align: center;
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666666; /* Dunkleres Grau */
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}
