hr {
			width: 100%;
			height: 3px;
			margin: 10px auto;
			background-color: darkgreen;
			border: none;
		}
		table {
			padding: 10px 20px;
			}
		body {
			text-align: center;
			background-color: black;
			color: white;
			margin: 0;
			overflow-x: hidden;
			overflow-up: hidden;
		}
		header {
			display: flex;
			align-items: center;
			border-bottom: 3px solid darkgreen;
			padding: 10px 20px;
			background-color: black;
			position: sticky;
			top: 0;
			color: white;
		}
		header img {
			height: 50px;
		}
		nav {
			margin-left: auto;
			display: flex;
			gap: 40px;
		}
		a {
			text-decoration: none;
			color: white;
			font-size: 20px;
			font-weight: bold;
		}
		a:hover{
			color: limegreen;
		
		
