body {
    font-family: 'Inter', sans-serif; /* Oder deine gewünschte Schriftart */
    margin: 0;
    padding: 0;
    background-color: #000; /* Hintergrundfarbe */
    color: #fff; /* Textfarbe */
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding: 20px 0;
}

header img {
    max-width: 300px;
    height: auto;
}

main {
    text-align: center;
    padding: 20px 0;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
}

#vimeo-feed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    margin-bottom: 20px;
}

#vimeo-feed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

footer a {
    color: #b30019; /* LAAX OPEN Rot */
    text-decoration: none;
}