@charset "utf-8";
body {
	background: url(../img/bg.webp);
	background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
	background-position: center center;
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* 100% der Bildschirmhöhe */
    margin: 0;
}
.logo {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Horizontal zentriert */
    align-items: center; /* Vertikal zentriert */
}
.logo img {
    max-width: 360px;
    width: 100%;
    height: auto;
	display: block;
}