* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100dvh;
    background-color: lightgrey;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ausgabe {
    width: 80%;
}

#table {
    width: 100%;
}

#tankstelle {
    width: 40%;
}

.td3 {
    text-align: center;
    background-color: red;
    font-weight: bold;
}

td {
    padding: 5px;
}

tr:nth-child(odd) {

    background-color: aliceblue;
}

tr:nth-child(even) {

    background-color: rgb(224, 224, 246);
}