/*index advertising configuration*/
/*advertising div topping the content in the main content section*/
.main_ad_section {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
	padding: 10px;
	margin: 0px;
}
/*set backgrounds for each panel individually*/
.photo_ad {
	background-image: url("../images/photoExample2.png");
	background-size: cover;
}
.video_ad {
	background-image: url("../images/photoExample3.png");
	background-size: cover;
}
.web_ad {
	background-image: url("../images/photoExample4.png");
	background-size: cover;
}
/*set advert dimensions and align content to center*/
.advert {
	display: flex;
	flex: 1 1 400px;	
	max-width: 500px;
	min-width: 200px;
	min-height: 400px;	
	padding: 10px;
	justify-content: center;
	align-items: center;
}
/*style the button that will open the panel
for now it will link to appropriate page*/
.advert_btn {
	display: flex;
	align-items: center;
	background: #8D0000;	
	border: 3px solid hsla(220, 18%, 97%, 0.5);
	border-radius: 25%;
	max-width: 55%;
	min-height: 55%;
	font-family: "Neuton", Garamond, serif;
	font-style: normal;
	font-weight: 700;
	font-size: clamp(2rem, 1vw, 3rem);
	color: #ffe5e5;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	padding: 10px;	
}
.advert_btn:hover {
	background-color: hsla(180, 100%, 28%, 0.9); 
}
.advert_btn a {
	display: block;
	font-family: "Neuton", Garamond, serif;
	font-style: normal;
	font-weight: 700;
	font-size: clamp(2rem, 1vw, 3rem);
	color: #ffe5e5;
	text-decoration: none;
	text-align: center;
	padding: 10px;	
}
.advert_btn a:hover{
	color: #F5F6F8;
	cursor: pointer;
}



