@media print {
	body {
		display: none;
	}
}

html, body {
	height: 100%;
	margin: 0;
}

body {
	display: flex;
	flex-direction: column;
	font-family: 'Arial', sans-serif;
	background: #f4f4f4;
	color: #333;
	font-size: 10pt;
	line-height: 15pt;
}

.container {
	flex: 1; /* Allow the container to grow and push the footer down */
	width: 80%;
	margin: 5px auto;
	overflow: hidden;
	background: lightblue;
	border-radius: 15px;
	padding: 3px;
}

header {
	background: #333;
	color: black;
	padding-top: 30px;
	min-height: 70px;
	border-bottom: #0779e4 3px solid;
}

header a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
}

header ul {
	padding: 0;
	list-style: none;
}

header li {
	display: inline;
	padding: 0 20px;
}

header h1 {
	float: left;
	font-size: 24px;
}

header nav {
	float: right;
	margin-top: 10px;
}

section {
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	width: 40%;
	margin: 0;
	margin-left: 100px;
	padding: 0;
}

section h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.project {
	margin-bottom: 20px;
}

.project h3 {
	font-size: 20px;
}

form {
	display: flex;
	flex-direction: column;
}

form label {
	margin-top: 10px;
}

form input, form textarea {
	padding: 10px;
	margin-top: 5px;
	font-size: 16px;
}

form button {
	margin-top: 10px;
	padding: 10px;
	background: #333;
	color: #fff;
	border: none;
	cursor: pointer;
}

form button:hover {
	background: #0779e4;
}

footer {
	background: #333;
	color: black;
	text-align: center;
	padding: 20px 0;
	margin-top: auto; /* Pushes the footer to the bottom */
}

.background-top {
	background-image: url('Programming_Fox.png');
	background-repeat: no-repeat;
	background-position: right top;
	background-size: 60vh;
	height: 70vh;
	border-radius: 15px;
	margin: 15px;
	margin-right: 125px;
	overflow: scroll;
}