* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.title {
    font-size: 80px;
    font-weight: 300;
    padding: 25px;
    color: #fcd200;
}

.Titleheader {
    width: 100%;
    display: flex;
    flex-direction: row;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.header{
    font-size: 32px;
    border-bottom: 3px solid #555555;
}

.listitem {
    font-size: 40px;
    height: 60px;
    color: #fcd200;
    border-bottom: 3px solid #555555;
} 

.listitem:nth-child(2n-1){
    background-color: #222222;
}

.canceled {
    background-color: red;
}