body {
	--mainColor: #ff7a00;
	background-color: #000;
	padding: 0px;
	margin: 0px;
}
main {
	padding: 10px;
	max-width: 100vw;
	margin: 100px 0px 70px;
	background-color: #222; 
	transition: max-width 300ms, margin 300ms;
}
header, footer {
	z-index: 5;
}
header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 90px;
	background-color: #333;
	border-bottom: 1px solid #888;
	text-align: center;
}
header div {
	display: inline-block;
}
header div img {
	height: 60px;
}
header input {
	width: 80vw;
}
footer {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100vw;
	height: 50px;
	margin-top: 50px;
	background-color: #222;
	border-top: 1px solid #888;
	text-align: center;
}
footer p {
	margin-top: 5px; 
}

@media screen and (min-width: 600px) {
	main {
		max-width: 50vw;
		margin: 100px auto 70px;
	}
	p {
		font-size: 100%;
	}
	#log {
		font-size: 100%;
	}
	.circle {
		width: calc(10vh + 10px);
		height: calc(10vh + 10px);
	}
	.card img {
		width: 2vh;
		height: 2vh;
	}
	.circle {
		width: calc(10vh + 10px);
		height: calc(10vh + 10px);
	}
}
@media screen and (max-width: 600px) {
	.card > span:nth-of-type(1) {
		width: calc(20vw + 20px)!important;
	}
	.card img {
		width: 10vw;
		height: 10vw;
	}
	.circle {
		width: calc(20vw + 10px);
		height: calc(20vw + 10px);
	}
}
p,td,th,span,div,td,a,h1,h2,h3 {
	font-family: Verdana, Sans-Serif;
}
p {
	font-weight: bold;
}
h1,h2,h3,p,span,div,td,th,a,h1,h2,h3 {
	margin: 0px;
	color: var(--mainColor);
}
th {
	text-align: left;
}

#log {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	margin: 0px;
	padding: 10px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.8);
}

.card {
	display: flex;
	align-items: center;
	gap: 0.5vw;
	width: 100%;
	margin: 2px;
	border-radius: 5px;
	background-color: #242424;
	opacity: 0;
	transition: opacity 0.5s;
	width: 100%;
}
.card.open {
	background-color: #243624;
}
.card.soon {
	background-color: #363624;
}
.card.closed {
	background-color: #362424;
}
.card > span {
	vertical-align: middle;
	display: inline-block;
}
.card > span:nth-of-type(1) {
	width: calc(10vw + 20px);
}
.card > span:nth-of-type(2) {
	padding-left: 5px;
}
.card > span:nth-of-type(3) {
	margin-left: auto;
}
.card > span:not(:nth-of-type(2)) {
	user-select: none;
}
.circle {
	display: block;
	position: relative;
	padding: 5px;
}
.circle::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	background-color: #066;
	width:	var(--size);
	height:	var(--size);
	transform: translate(-50%, -50%);
	z-index: 1;
}
.circle::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	border-radius: 100%;
	background-color: #222;
	border: 2px solid #066;
	width:	100%;
	height:	100%;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.circle > p {
	position: absolute;
	z-index: 2;
	margin: 0px;
	text-align: center;
	border-radius: 100%;
	background-color: #066;
	padding: 10px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.circle > p > span {
	display: block;
}
.circle > p > span:nth-of-type(2) {
	font-size: 10px;
}