body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

div { 
    margin: 0px;
    padding: 5px;
    border-radius: 0px;
    background-color: #fff;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    text-align: left;
    vertical-align: middle;
}

h1 {
    color: #333;
    text-align: left;
    vertical-align: middle;
    margin: 0;
    font-size: 30px;
}

h2 {
    color: #555;
    text-align: left;
}

p {
    margin: 1px;
}

#section1 {
    height: 90%; 
    text-align:center; 
    display:table;
    width:100%;
}

#section1 h1 {
    display:table-cell; 
    vertical-align:middle;
}

#maincontainer {
    width: 800px;
    height: 480px;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px;
    outline-style: dotted;
}

#left, #right, #tomorrow, #day_after_tomorrow {
    outline-style: dotted;
}

#afvalwijzer {
    font-size: 22px;
}

.verticalcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.horizontalcontainer {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.vertcenter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* DivTable*/
.divTable{
    display: table;
    width: 100%;
}
.divTableRow {
    display: table-row;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
}
.divTableCell, .divTableHead {
    display: table-cell;
    padding: 3px 5px;
}
.divTableHeading {
    background-color: #EEE;
    display: table-header-group;
    font-weight: bold;
}
.divTableFoot {
    background-color: #EEE;
    display: table-footer-group;
    font-weight: bold;
}
.divTableBody {
    display: table-row-group;
}
/* DivTable */