body {
    margin: 0px; 
    background: black;
    font-family: 'calibri', sans-serif;
}

h1, h2, h3 {
    margin: 6pt;
}

h1 { font-size: 18pt; }
h2 { font-size: 14pt; }
h3 { font-size: 12pt; }

p { margin: 10pt; }

ul { margin: 4pt; }

.vintedge_div {
    color: rgb(32, 32, 32);
    background: rgba(0, 0, 32, 255);
    z-index: inherit;
    margin: 0pt;
    padding: 0pt;
    border-radius: 4pt;
    border-width: 1pt;
    border-style: solid;
    z-index: 4;
}

.header_container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

    position: relative;
    background: rgba(255, 255, 255, 1.0);

    box-sizing: border-box;
    width: 99.5%;
    margin: 2px;
}

.header_left {
    flex: 2;
    background: rgba(160, 0, 16, 1);
    color: white;
    margin: inherit;
    font-size: 30px;
    text-align: center;
}

.header_center {
    flex:6;
    background: rgba(240, 240, 240, 1);
    margin: inherit;
    padding: 4pt 10pt 4pt 10pt;
    font-size: 30pt;
    text-align: center;
}

.header_right {
    flex: 3;
    background: rgba(16, 16, 127, 1);
    color: white;
    margin: inherit;
    font-size: 16pt;
    text-align: center;
}

.content {
    background: rgba(240, 240, 240, 1);
    margin: inherit;
    padding: 2pt 2pt 2pt 8pt;
    font-size: 12pt;
    text-align: left;
}

