body, h1, h3, p {
	font-family: "Roboto", sans-serif;
}

.w3-sidebar {
	width: 220px;
	z-index: 2;
	background: #f8f9fa;
	box-shadow: 6px 0 15px rgba(0, 0, 0, 0.1);
	
}

.w3-bar-item {
	padding: 16px;
	border-bottom: 1px solid #ddd;
	color: #333;
	transition: background-color 0.3s;
}

.w3-bar-item:hover, .active-link {
	background-color: #dae0e5;
	color: #000;
}

.w3-main {
	margin-left: 220px;
	background: #fff;
	color: #333;
}

.header-container {
	background-color: #000;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	padding: 0 16px;
}

.header-title {
	margin-left: 16px;
}

.w3-overlay {
	cursor: pointer;
	z-index: 1;
}

.w3-container {
	padding: 16px;
}

.horizontal-padding {
	padding-left: 32px;
	padding-right: 32px;
	max-width: 820px;
}

.background-header {
    background-image: url('header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.background-header h1 {
    text-shadow: 2px 2px 4px #000000;
    background-color: rgba(0, 0, 0, 0.6);
    display: inline;
    padding: 10px 20px;
    border-radius: 5px;
}

.menu-button {
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.menu-button:hover {
    background-color: rgba(0, 0, 0, 1.0) !important;
    color: #fff !important;
}

.w3-bar-item.w3-button.bottom-link {
    opacity: 0.3;
    transition: opacity 0.3s ease;
	position:absolute;
	bottom:0;
}

.w3-bar-item.w3-button.bottom-link:hover {
    opacity: 1;
}