body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

h1 {
    color: #333;
    margin-bottom: 40px;
    font-size: 2.5em;
}

.poll-results {
    margin-bottom: 30px;
}

.answer {
    margin: 15px 0;
}

button {
    padding: 15px 30px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-weight: bold;
}

.ja-btn {
    background-color: #4CAF50;
    color: white;
}

.ja-btn:hover {
    background-color: #45a049;
}

.nein-btn {
    background-color: #f44336;
    color: white;
}

.nein-btn:hover {
    background-color: #da190b;
}

.result {
    font-size: 1.2em;
    margin-top: 10px;
    color: #666;
}
