#divHeader {
	margin: auto;
	background-color: rgba(0, 0, 0, 1);
	border-bottom: 2px solid #ffffff;
	padding-top: .4rem; /* Large padding which will shrink on scroll (using JS) */
	transition: 0.4s; /* Adds a transition effect when the padding is decreased */
	position: fixed; /* Sticky/fixed navbar */
	width: 100%;
	height: 2rem;
	/*max-width: 960px;*/
	/*z-index: 9999;*/
}

.divLogo{
	position:absolute;
	margin-top: -.1rem;
	margin-bottom: 1rem;
	margin-left: 10%;
	width: 7rem;
	height: 3rem;
	background-image: url("../images/logo2024.png");
	background-repeat: no-repeat;
	background-size: 100% auto;
	/*background-color: blueviolet;*/
}

h1{
	margin: 0% auto;
	color:rgba(255, 255, 255, 1);
	/*background-color: blueviolet;*/
	text-align: center;
	font-size: 1rem;
}
	
#navbar-right {
	/*background-color: blueviolet;*/
	font-size: 1.2rem;
	float: right;
	margin-right: 10%;
	margin-top: -1.5rem;
}

#idBack{
	text-decoration: none;
	font-size: 80%;
	color:rgba(255, 255, 255, 1);
}

#idBack:hover{
	color: rgb(182, 186, 186);
}



/* +++++++++++++++++++++++++++++++ RESPONSIVE DESIGN ++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/* //////////////////////// DESIGN MAX 750px ////////////////////////// */

@media only screen and (max-width: 750px) {
	.divLogo{
		width: 1.8rem;
		height: 1.8rem;
		background-image: url("../images/logo.png");
		background-repeat: no-repeat;
		background-size: 100% auto;
		margin-left: 5%;
		/*background-color: blueviolet;*/
	}
	h1{
		font-size: initial;
	}
}


