html, body {
	margin: 0;
	padding: 0;
    min-height: 100vh;
}
body {
    background: darkgray;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

header {
	position: sticky;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: var(--gap-m);
	width: 100%;
	padding: var(--spacing-default, clamp(0.5rem, 1vw, 1.25rem));
	box-sizing: border-box;
    z-index: 100;
	background: linear-gradient(46deg,
			rgba(17, 32, 242, 1) 0%,
			rgba(17, 32, 242, 1) 60%,
			rgba(45, 253, 236, 1) 70%,
			rgba(73, 176, 0, 1) 95%,
			rgba(45, 253, 236, 1) 100%);
}

footer {
    position: fixed;
    bottom: 0;
    right: 0;

    display: flex;
    align-items: center;
    gap: 0.75rem;

    min-height: 40px;

    width: fit-content;

    padding: 0.5rem 0.75rem;

    border-radius: 16px 0 0 0;

	background: linear-gradient(46deg,
			rgba(17, 32, 242, 1) 0%,
			rgba(45, 253, 236, 1) 46%,
			rgba(73, 176, 0, 1) 89%,
			rgba(45, 253, 236, 1) 100%);
    backdrop-filter: blur(8px);
    z-index: 99;
}

.banner {
    padding: auto 25px;
	height: var(--gap-s, clamp(32px, 64px, 64px));
	width: var(--gap-s, clamp(25%, 75%, 100%));
}

.logo {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	transition: transform 0.3s;
}

.nav {
	align-items: center;
	display: flex;
	flex-grow: 1;
	flex-shrink: 0;
	justify-content: end;
	box-sizing: border-box;
}

.nav-list {
	column-gap: var(--gap-s, clamp(0.2rem, 1.5vw, .5rem));
	display: flex;
	list-style-type: none;
	margin-bottom: 0px;
	padding-left: 0px;
	box-sizing: border-box;
	margin-top: 0;
}

.nav-button {
	border: 2px solid #39383ba4;
	border-radius: 18px;
	padding: 5px;
	background: #0055C2;
	background: linear-gradient(16deg,
			rgba(0, 85, 194, 1) 0%,
			rgba(16, 32, 158, 1) 35%,
			rgba(0, 189, 0, 1) 100%);
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 16px;
	letter-spacing: 1px;
	word-spacing: 1px;
	color: #29FF40;
	font-weight: normal;
	text-decoration: none;
	font-style: normal;
	font-variant: small-caps;
	text-transform: none;
	transition: transform 0.3s, color 0.3s, background 0.3s;
	display: inline-block;
}

.nav-button:hover {
	color: white;
	transform: scale(1.12);
	transition: transform 0.3s, color 0.3s, background 0.3s;
	background: linear-gradient(344deg,
			rgba(0, 85, 194, 1) 0%,
			rgba(16, 32, 158, 1) 35%,
			rgba(0, 189, 0, 1) 100%);
}

.nav-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.3s, color 0.3s, background 0.3s;
}

.nav-button:hover {
	color: white;
	transform: scale(1.12);
}

main {
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    box-sizing: border-box;
}

td {
	width: 100px;
	height: 50px;
	max-width: 100%;
	max-height: 100%;
}

tbody {
	width: 100%;
	text-align: center;
	background-color: Gray;
	font-size: 24px;
	border-radius: 12px;
}

.center {
	margin: auto;
	width: 80%;
	padding: 5px;
	text-align: center;
	justify-content: center;
}


a.nodec:hover {
	color: white;
	background-color: green;
}

.head, .foot {
	font-weight: bold;
}