body, html {
	height: 100%;
	margin: 0;
	font-family: Arial, sans-serif;
}
.jumbotron {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/index.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	height: 100vh;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.jumbotron h1 {
	font-size: 4rem;
	font-weight: bold;
}
.content-wrapper {
	display: flex;
}
.sidebar {
	width: 20%;
	background-color: #f8f9fa;
	padding: 20px;
	height: 100vh;
	position: sticky;
	top: 0;
}
.main-content {
	width: 40%;
	padding: 20px;
}
.main-content img {
	width: 100%;
	height: auto;
}
.footer {
	background-color: #333333;
	color: white;
	text-align: center;
	padding: 15px 0px 0px 0px;
	position: fixed;
	width: 100%;
	bottom: 0;
}
