

/* Allgemeine Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('backg.png') no-repeat center center fixed;
    background-size: cover;
    text-align: center;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.poster, .soldout-container, .container {
    flex: 1 1 400px;
    max-width: 400px;
}
.poster img, .soldout-container img {
    width: 100%;
    height: auto;
}

/* Header */
header {
    background: url('img/brunologo.png') no-repeat center center;
    background-size: contain;
    color: white;
    padding: 0;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    header {
        background-position: center;
    }
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    background: #444;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 15px;
    display: block;
}

nav ul li a:hover {
    background: #555;
}

/* About & Contact Sections */
.about-contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
}

.about, .contact {
    width: 45%;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    text-align: left;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
}

input, select, button {
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: 100%;
}

button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border: none;
    margin-top: 20px;
}

button:hover {
    background-color: #218838;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 10px;
    text-align: center;
    margin-top: 20px;
}
