@import url('https://fonts.googleapis.com/css?family=Montserrat:wght@300&display=swap');
:root
{
	--golden: #C8B548;
	--green: #6F6;
	--blue: #91B0F1;
	--red: #FF5B5B;
}
*
{
	padding: 0;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	color: #FFF;
}
body
{
	background-color: #161616;
	overflow-y: scroll;
}
p{line-height: 1.5;}
b{color: var(--blue);}
button
{
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	padding: 10px;
	font-weight: bold;
	border: solid 1px #666;
	font-size: 18px;
	cursor: pointer;
	border-radius: 40px;
	height: 40px;
}
button:disabled
{
	background: linear-gradient(#999, #444);
	color: #AAA;
	cursor: default;
}
.hidden{display: none;}
b[id^="db"]
{
	font-size: 18px;
	color: var(--red);
}
b[id^="db"] > span
{
	font-size: 12px;
}