body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

#ticket-container {
    text-align: center;
}

#tickets {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.ticket {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin: 10px;
    padding: 10px;
    text-align: center;
}

footer {
    background-color: #343a40;
    color: white;
    padding: 10px;
    text-align: center;
}
