body {
    background-color: #FBF5E9;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    margin: 0;
    padding-top: 40px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 200px;
    margin-bottom: 30px;
}

.note {
    font-weight: bold;
    color: #B97D8E;
    margin-bottom: 20px;
    text-decoration: none;
}

.note:hover {
    color: #555;
    text-decoration: underline;
}

.text {
    text-align: left;
    margin-bottom: 40px;
    font-size: 16px;
}

.deutsch {
    color: #B97D8E;
}

.englisch {
    color: #555;
}

.email {
    display: block;
    margin-top: 30px;
    font-size: 14px;
    color: #B97D8E;
    text-decoration: none;
}

.email:hover {
    text-decoration: underline;
}

.ticket-link {
    display: inline-block;
    margin: 20px 0;
    padding: 12px 20px;
    background-color: #B97D8E;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.ticket-link:hover {
    background-color: #9e6377;
}