* {
	margin: 0;
	padding: 0;
}

.content-header {
	width: 100%;
	height: 150px;
	background-color: #1d2230;
	color: #ffffff;
	box-sizing: border-box;
	padding: 20px;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-bottom: 2px solid #dd9361;
	box-shadow: 0px 2px 10px 2px #dd9361;
	position: relative;
	z-index: 4;
}
.content-header p {
	/*margin-right: 180px;*/
	font-weight: 500;
	letter-spacing: 1.5px;
	font-size: 50px;
	/*text-decoration: underline;
	text-decoration-color: #dd9361;
	text-decoration-thickness: 5px;*/
}

@media (max-width: 1200px) {
	.content-header {
		width: 100%;
		height: 100px;
		position: fixed;
	}
	.content-header p {
		font-size: 40px;
	}
}
@media (max-width: 700px) {
	.content-header p {
		font-size: 30px;
	}
	.content-header {
		width: 100%;
		height: 80px;
	}
}
@media (max-width: 550px) {
	.content-header p {
		font-size: 25px;
	}
	.content-header {
		width: 100%;
		height: 80px;
	}
}
@media (max-width: 480px) {
	.content-header p {
		font-size: 25px;
	}
	.content-header {
		width: 100%;
		height: 80px;
		justify-content: flex-end;
		padding: 20px;
	}
}
@media (max-width: 440px) {
	.content-header p {
		font-size: 25px;
		padding: 0px 70px;
		text-align: center;
	}
	.content-header {
		width: 100%;
		height: 80px;
		justify-content: center;
		padding: 20px;
	}
}
@media (max-width: 360px) {
	.content-header p {
		font-size: 25px;
		padding: 0px 40px;
		text-align: center;
	}
	.content-header {
		width: 100%;
		height: 80px;
		justify-content: center;
		padding: 20px;
	}
}
