body {
	background-color: black;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: scroll;
}

::selection {
	background-color: white;
	color: black;
}

.site-title {
	text-align: center;
	border-bottom: 2px white solid;
	width: 100%;
	user-select: none;
	font-size: 50pt;
	font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
	color: white;
	margin: 25px;
	padding-bottom: 25px;
}

.addr-list {
	display: flex;
	flex-direction: column;
	gap: 1vh;
}

.addr {
	display: flex;
	width: fit-content;
	background-color: white;
	border: 2px white solid;
	gap: 2px;
}

.amount, .string {
	font-family: monospace;
	font-size: 15pt;
	background-color: black;
	color: white;
	padding: 5px;
}

.amount {
	min-width: 209px;
}

mark {
	user-select: none;
	color: white;
	background-color: black;
}

.string {
	min-width: 736.594px;
}

.total {
	border: 2px white solid;
	border-top: none;
	padding: 5px;
}

.tip {
	user-select: none;
	background-color: black;
	border-top: 2px white solid;
	display: flex;
	justify-content: center;
	position: absolute;
	z-index: 5;
	width: 100%;
	gap: 4px;
	bottom: 0;
	padding-bottom: 40px;
	padding-top: 40px;
}

.tipInput {
	font-family: monospace;
	font-size: 20pt;
	text-align: center;
	background-color: black;
	color: white;
	border: 2px white solid;
	width: 49px;
}

.genericText {
	font-family: monospace;
	font-size: 20pt;
	color: white;
	margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
	appearance: none;
	-moz-appearance: textfield;
}
