* {
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
}

/*Navbar*/
.navbar {
	border-bottom: 1px solid #eee;
	background: linear-gradient(to right, #e76d4d 0%, #d54d4d 100%);
}
.navbar .navbar-brand {
	font-size: 1.2rem;
	font-weight: 700;
}
.navbar .nav-link {
	color: white;
	margin: 4px 0;
	position: relative;
}
@media(min-width: 1200px) {
	.navbar .navbar-brand {
		font-size: 1.8rem;
		font-weight: 700;
		margin: -2em 0;
	}
	.navbar .nav-link {
		margin: 0 4px;
	}
}

/*Page Header*/
.page-header {
	background: linear-gradient(to right, #faa7a7 0%, #e24070 100%);
}
@media(min-width: 992px) {
	.page-header .h1 {
		border-left: 4px solid white;
		padding-left: 0.5em;
	}
}

/*Page Content*/
.content .btn.btn-primary {
	background-color: #f3004c;
	border-color: #f3004c;
	border-radius: 0;
	color: white;
	padding: 12px 30px;
	text-transform: uppercase;
	text-shadow: none;
}
.content p {
	text-align: justify;
}
.content .h2 {
	font-weight: bold;
	color: #f3004c;
	position: relative;
	margin-bottom: 1.2em;
}
.content .h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 4px;
	background: linear-gradient(to left, #f48723 0%, #f3004c 100%);
}

/*Sponsors Section*/
.sponsors {
	background: linear-gradient(to right, #e76d4d 0%, #d54d4d 100%);
}
.sponsors .card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 100px;
	aspect-ratio: 3/1;
}
.sponsors .card img {
	width: auto;
	height: 100%;
}

/*Footer Section*/
.footer {
	background: linear-gradient(to right, #e76d4d 0%, #d54d4d 100%);
	color: white;
	border-top: 1px solid #eee;
}