body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

h1 {
    text-align: center;
    margin: 20px 0;
    color: #007bff;
    font-weight: bold;
}

.poll-list {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.poll-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.poll-list li {
    margin-bottom: 10px;
}

.poll-link {
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.poll-link:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
}
