/* www.williammortl.com style sheet */
/* hand coded by William M Mortl */

/* applies to all elements */
body
{
    background-color: #202020;
	color: white;
    text-align: center;
	font: helvetica, arial, sans-serif;
	font-size: 16pt;

    /* stops iphone from resizing text */
	-webkit-text-size-adjust: none;
}

/* specific styles */

div.signature
{
	width: 1000px;
	border: 1px white dashed;
	margin-left: auto;
	margin-right: auto;
	border-radius: 0 25px 25px 25px;
	background-color: black; 
	backdrop-filter: blur(6px);
	font-family: calibri, arial;
	font-size: 36pt;
	padding: 25px;
    text-align: center;
    text-shadow: gray 2px 2px 2px;
}

/* hover */
a
{
	color: white;
	text-decoration: none;
	font-weight: bold;
}
a:hover
{
	text-decoration: underline;
	text-shadow: gray 2px 2px 2px;
}

/* Topbar styles */
.topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 56px;
	background: rgba(0,0,0,0.7);
	border-bottom: 1px solid #333;
	backdrop-filter: blur(6px);
	z-index: 1000;
}
.topbar-inner {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 0 16px;
}
.topbar .brand {
	font-weight: 600;
	color: #00FF99;
	margin-right: 12px;
}
.topbar select {
	background: #111;
	color: #eee;
	border: 1px solid #444;
	border-radius: 4px;
	padding: 6px 8px;
}
.topbar input[type="number"] {
	background: #111;
	color: #eee;
	border: 1px solid #444;
	border-radius: 4px;
	padding: 6px 8px;
	width: 96px;
}