@-ms-viewport {
	width: device-width; 
}

html { 
	height:100%; 
}
body { 
	font-family: 'Helvetica Neue', helvetica, arial, sans-;
	height: 100vh;
	margin: 0; 
	padding: 0; 
	background-color: #000000;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

a {
	color: #444;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	width: 100%;
}
table thead {
	position: sticky;
	top: 0;
}
table tbody td {
	border: solid 1px #EEEDFF;
	text-shadow: 1px 1px 1px #fff;
	padding: 8px;
	text-align: left;
	vertical-align:middle;
	font-weight: 300;
	font-size: 12px;
	color: #444;
	font-size: 13px;
	background: #fff;
}
table thead th {
	border: none;
	text-shadow: 1px 1px 1px #ccc;
	padding: 8px;
	text-align: left;
	font-weight: 500;
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	background: #00A858;
}
table tbody td {
    border: none;
    border-top: solid 1px #EEEDFF;
}

table tbody tr:first-child td{
	border-top: none;
}
table tbody tr {
	background: transparent !important;
}
table tbody tr:hover td{
	background: #EEEDFF;
	cursor: pointer;
}

.links, .programs {
	flex-wrap: wrap;
}
.sites {
	overflow: auto;
	display: flex;
	margin: 12px;
	width: 50%;
	height: 33%;
	min-height: 100px;
}
.links-container {
	flex: 1;
	width: 50%;
	display: flex;
    flex-direction: column;
    align-items: center;
}
hr {
	width: 100%;
}
.links {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	padding: 2px;
}
.programs {
	width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
	font-size: 12px;
}
.programs a {
	background: white;
	padding: 4px;
	border-radius: 4px;
}
.container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
.project {
	padding: 8px;
}
.footer { 
	padding: 4px;
}
.project img {
	max-width: 400px;
	max-height: 150px;
}
.links img {
	max-width: 300px;
	max-height: 50px;
}
.footer img {
	max-width: 200px;
	max-height: 25px;
}
.hover {
	transition: 0.1s ease-in-out;
}
.hover:not(.active):hover {
	opacity: 1;
	transform: scale(1.1);
}
.active {
	margin: -1px 2px;
	transform: scale(1.3);
	border: 1px solid black;
}
.no-sites-found {
	text-align: center;
}

@media (max-width: 1200px) {
	.links-container {
		width: 75%
	}
}

@media (max-width: 800px) {
	.links-container {
		width: 90%
	}
}
