body {
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    position: relative;
}

img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    width: 295.5px; /* halbe Breite des Bildes (591px / 2) */
    height: 295.5px; /* halbe Höhe des Bildes (591px / 2) */
}
