/*CSS solution from: https://francescogatti.medium.com/how-to-center-a-div-in-2023-63c0423bff03*/

@font-face {
    font-family: 'truetypewriter_polyglottRg';
    src: url("./../fonts/ttwpgott/ttwpgott-webfont.woff") format("woff"),
;
    /*src:
        url("<?=$baseUrl?>assets/fonts/ttwpgott/ttwpgott-webfont.eot"),
        url("<?=$baseUrl?>assets/fonts/ttwpgott/ttwpgott-webfont.eot?#iefix") format("embedded-opentype"),
        url("<?=$baseUrl?>assets/fonts/ttwpgott/ttwpgott-webfont.woff") format("woff"),
        url("<?=$baseUrl?>assets/fonts/ttwpgott/ttwpgott-webfont.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;*/
}

body {
    font-size: 1em;
    font-family: sans-serif;
    height: 100vh;
    margin: 0;
}

a {
    color: #000;
}

.main {
    display: flex;
    height: 100%;
    justify-content: center;
    /*background: linear-gradient(rgba(67,111,77,.5), rgba(67,111,77,.5)), url('<?=$backgroundFile?>');
    background-position: center;*/
}

.content {
    color: #000;
    width: 100%;
    margin: auto;
    text-align: center;
}


h1 {
    font-family: truetypewriter_polyglottRg, Verdana, Geneva, sans-serif;
}

.message {
    /* background: <?=$fillColor?>; */
    border-top: 1px solid #333;;
    border-bottom: 1px solid #333;;
    margin: 0;
    padding: 0;
}

.message img {
    display: block;
    margin: auto;
    padding: 0;
}