h1 {
	font-family: Arial, sans-serif;
	font-size: 32px;
	color: white;
	text-align: center;
	margin-bottom: 5px;
}

h2 {
	font-family: Arial, sans-serif;
	font-size: 24px;
	color: white;
	margin-bottom: 5px;
}

hr {
	margin-bottom: 20px;
}

body {
	background-color: #1a1a1a;
}

p {
	font-family: Arial, sans-serif;
	color: white;
}

table {
    background-color: #2c2c2c;
    border-radius: 15px;
}

table th, table td {
    border-bottom: 1px solid black;
    text-align: center;
}

table th {
	color: white;
}

.nav-bar {
	border-top: solid 2px white;
	border-bottom: solid 2px white;
	margin: 30px 0 20px;
	text-align: center;
}

.nav-bar a {
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 600;
	color: lightgray;
}

@media (max-width: 576px) {
    .nav-bar a {
		font-size: 1.7em;
	}
}

table th a {
	font-size: 24px;
}

a:link {
  color: lightgray;
  text-decoration: none;
}

a:visited {
  color: lightgray;
}

a:hover {
  color: white;
  text-decoration: underline;
}

a:active {
  color: #2dd4bf;
  text-decoration: underline;
}

.nav-bar a.selected {
    color: lightgray;
}

.nav-bar a:hover {
	color: white;
}

.nav-bar a.unselected {
    color: white;
}

table.project {
	font-family: Arial, sans-serif;
	font-size: 15px;
    width: 100%;
    text-align: center;
}

table.project tr:last-child th {
    border-bottom: none;
}

.grid-container {
	display:grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	justify-content: left;
}

@media (max-width: 990px) {
  .grid-container {
    grid-template-columns: 1fr; /* stack into 1 column on small screens */
  }
}
  
.image-wrapper {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	display: flex;
	align-items: center;
    justify-content: center;
}
  
.image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-wrapper {
    width: 100%;
	height: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
	margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
}
  
img.project {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
	object-position: center center;
}

.main-div {
	padding:50px;
	margin-left: 10%;
	margin-right: 10%;
	background-color: #252525;
	border-radius: 50px;
}