body{
	background-color: white;
	font-family: nb_international_pro, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
	padding: 30px 0;
	z-index: 10;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.logo img {
	height: 100px;
	margin-left: 10px;
}

nav {
	margin-top: 20px;
	text-align: right;
	margin-right: 300px;
}

nav a{
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}

main {
	padding: 150px;
}

h1 {
	font-size: 50px;
	font-weight: bold;
	text-align: center;
}

#projectTable {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

#projectTable th, #projectTable td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: left;
}

#projectTable th {
    background-color: red;
    color: white;
}

#projectTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

#projectTable tr:hover {
    background-color: #ddd;
}

footer {
	background-color: white;
	padding: 30px;
	text-align: center;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px;
}

.footer-logo img {
	height: 80px;
	margin-left: 10px;
}

.footer-nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer-nav a {
	display: inline-block;
	color: black;
	padding: 10px 20px;
	text-decoration: none;
	margin: 5px;
	background-color: transparent;
	border: transparent;
	transition: font-size 0.2s;
	font-weight: bold;
}

.footer-nav a:hover {
	font-size: 18px;
	transition: font-size 0.2s;
}



.info p {
	text-align: right;
	font-weight: bold;
}

footer p {
	text-align: center;
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo img {
        margin: 0 auto;
        height: 60px;
    }

    nav {
        text-align: left;
        margin-top: 10px;
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: left;
        padding: 10px 0;
        margin: 0;
    }
	
	h1 {
		margin-top: 20px;
		clear: both;
		padding-top: 200px;
		font-size: 40px;
	}
	
    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-direction: column;
    }

    .info p {
        text-align: center;
    }
}