@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary: #006400; 
	--accent: #38CF30;
	--tertiary: #17fb13;
	--bga: #F8F8F8;
	--bg: #DBDBDB;
	--text: #161a1d;
}

.header {
	position: fixed;
	top: 0;
	z-index: 1;
	width: 100%;
	background-color: var(--bga);
}

.progress-container {
	width: 100%;
	height: 8px;
	background: var(--primary);
}

.progress-bar {
	height: 8px;
	background: var(--tertiary);
	width: 0%;
}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	min-height: 100vh;
	background-color: var(--bga);
	color: var(--text);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

.roboto-body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.chunk {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap:24px; 
}

.scroll-container {
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
	height: 100vh;
}

main {
    flex: 1;
    min-height: 100vh;
    /* overflow-x: hidden;  */
    /* overflow-y: auto; */
    min-width: 0;
}

table {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

th, td {
	vertical-align: top; 
	padding: 12px 8px;
}

td:not(:first-child) {
	text-align: right;
}

th {
	background-color: var(--primary);
	color: var(--bga);
	text-align: center;
	font-weight: 600;
	padding: 12px 16px;
}

td, th {
	vertical-align: top;
}

tr {
	border-bottom: 1px solid black;
}
 
tr:nth-child(even) {
	background-color: rgba(0,100,0,0.08);
}

tr:nth-child(odd) {
	background-color: var(--bg);
}

tr:hover {background-color: var(--primary);
	color: var(--bga);
	transition: background 0.2s ease-in-out;
}

section {
	padding: 80px 80px;
	max-width: 1000px;
	margin: 0 auto;
}

.textbox {
  background: rgba(211, 211, 211, 0.4);
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}

h1 {font-weight: bold;
	font-size: 15px;
	font-family: Verdana, Times, serif;
	text-align: center;
	color: var(--primary);
}

h2 {font-size: 12px;
	font-family: Consolas, monospace;
	color: var(--primary);
	text-align: center;
}

.typey::after {
	content: '';
	display: inline-block;
	width: 0.5ch; 
	height: 1em; 
	margin-left: 0.1ch;
	background: currentColor;
	animation: blink 750ms steps(1) infinite;
}
@keyframes blink {
	50% {
		opacity: 0;
	}
}

/* a.glow-link {
	position: relative;
	color: var(--tertiary);
	text-decoration: none;
}
a.glow-link::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 2px;
	background: currentColor;
	transition: width 0.25s ease, left 0.25s ease;
}
a.glow-link:hover::after,
a.glow-link:focus-visible::after {
	width:100%;
	left: 0;
}
*/

h3 {font-size: 15px;
	font-family: Verdana, Times, serif;
	text-align: center;
  font-weight: normal;
}

p {font-size: 15px;
	font-family: Verdana, Times, serif;
	text-align: left;
}
	
ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: var(--primary);
	display: flex;
	justify-content: center;
	position: sticky;
	bottom: 0;
	width: 100%;
}

ul li {
	float: left;
	border-left: 1px solid black;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); color: #333;
}

ul li:last-child {
	border-right: none;
}

ul li a {
	display: block;
	color: var(--bga);
	padding: 14px 16px;
	text-decoration: none;
}

ul li a:hover {
	background-color: var(--accent);
	transition: ease 0.2s;
}

ul li a.active {
	background-color: var(--accent);
	color: var(--text);
}

li {
	display: flex;
	align-items: center;
	float: left;
}

li a, .dropbtn {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover, .dropdown:hover .dropbtn {
  background-color: var(--accent);
}

/* li.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px; color: #333;
  z-index: 1;
}

.dropdown-content a {
  color: var(--bga);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: right;
}

.dropdown-content a:hover {
	background-color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}
*/

.icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: flex;
	align-items: center;
	gap: 8px;
}

#myBar {
	transition: width 0.4s ease;
}

.nav-active {
	background-color: var(--bga);
	color: var(--bga);
}

.label {
	font-size: 15px;
    font-weight: 600;
    color: #E8F0FF;
    font-family: Verdana, Times, serif;
    font-weight: normal;
    letter-spacing: 0.5px;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
	opacity: 0;
	transition: opacity 0.2s ease 0.1s;
}

.stage-wrapper {
	height: 300vh;
	position: relative;
}

.stage {
	position: sticky;
	top: 60px;
	height: 100vh;
	overflow: hidden;
}

.col {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.35s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	pointer-events: none;
}

.col.active {
	opacity: 1;
	transition: opacity 0.35s ease 0.35s;
	pointer-events: auto;
}