@charset "UTF-8";

/** CSS RESET **/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
    box-sizing: border-box;
}

/** TILBUCI **/

body, html {
    font-family: "Averia Serif Libre", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #FFFFFF;
    background-color: #000000;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

a:link, a:visited {
    color: #ffffff;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

#tbpage {
    margin: 15px 30px 30px 30px;
}

#tbheader {
    vertical-align: middle;
    display: flex;
}

#tbheaderleft {
    vertical-align: middle;
    font-weight: bold;
    font-size: 40px;
    flex: 1;
}

#tbheaderright {
    vertical-align: middle;
    font-weight: bold;
    font-size: 20px;
    text-align: right;
    flex: 1;
    padding-top: 50px;
}

#tblogo {
    vertical-align: middle;
    width: 120px;
    height: auto;
    border: none;
}

.tbmenu {
    margin-left: 20px;
}

#tbcontent {
    text-align: center;
    padding: 20px 0;
    font-size: 24px;
    line-height: 1.4;
    border-top: solid 2px #ffffff;
    border-bottom: solid 2px #ffffff;
}

h1 {
    font-weight: bold;
    font-size: 50px;
    margin-bottom: 20px;
}

h2 {
    font-weight: bold;
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 10px;
}

#tbwarn {
    color: #ff9900;
    margin: 10px 0;
}

textarea {
    background-color: #cccccc;
    width: 90%;
    color: #000000;
    font-family: "Averia Serif Libre", serif;
    font-size: 20px;
    padding: 10px;
    height: 300px;
    border: none;
    resize: none;
    margin: 20px 0;
}

#tbformarea {
    font-size: 18px;
    text-align: left;
    width: 90%;
    margin: 0 auto;
}

.input {
    width: 100%;
    display: block;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 5px;
    color: #000000;
    font-family: "Averia Serif Libre", serif;
    font-size: 20px;
    margin: 10px auto;
    border: none;
}

.submit {
    width: 100%;
    display: block;
    font-family: "Averia Serif Libre", serif;
    margin: 15px 0;
    padding: 5px;
    font-size: 20px;
    cursor: pointer;
}

#tbfooter {
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

@media (max-width: 1023px) {
    .input {
        font-size: 30px;
    }
    .submit {
        font-size: 30px;
    }
    #tbformarea {
        font-size: 16px;
    }
    textarea {
        font-size: 22px;
    }
}