*{
	margin:0;
	padding:0;
	font-family: 'Poppins';
}

body{
	background-color:#181818;
	min-height: 100vh;
	max-width: 100vw;
}

/*navigation bar*/
.navigation-bar{
	width: 100%;
	position: sticky;
	display: flex;
	justify-content: space-around;
	z-index:5;
	color: #b2beb5;
	padding-top:10px;
	padding-bottom: 20px;
}

.logo{
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-one{
	display: flex;
	align-items: center;
	justify-content: center;
}

.navigation-bar img{
	height: 80px;
}

@media(max-width: 800px){
	.logo h2{
		font-size:14px;
	}
	.logo-one h3{
		font-size: 13px;
		text-align:center;
	}
	.logo{
		flex-direction: column;
	}
	.logo-one{
		flex-direction: column;
	}
	.heading{
		font-size:18px;
	}
}

.heading{
	padding-top: 20px;
	padding-bottom:20px;
	text-align:center;
	color: white;
	box-shadow: 2px 0px 10px lightgreen;
}

.section-one{
	display:flex;
	align-items:center;
	justify-content:center;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;
}

.background{
	background: cover;
	width: 100%;
	height: 100%;
	max-height: 800px;
	position: absolute;
	display: sticky;
	opacity: 0.8;
	top:0;
	z-index: -1;
}

.container-one{
	padding-top:20px;
	padding-bottom: 20px;
	display:flex;
	width: 60%;
	flex-direction:column;
	align-items:center;
	justify-content: space-around;
	background: rgba(255,255,255,0.3);
	border-radius: 20px;
	box-shadow: 5px 10px 10px black, -5px -10px 10px black;
	backdrop-filter: blur(10px);
	transition: 0.5s;
	cursor:pointer;
}

@media(max-width:650px){
	.container-one{
		width: 95%;
	}
}

caption{
	color: black;
	font-size: 22px;
	font-weight: bold;
}

table{
	text-align:center;
}

th{
	color:black;
	background: transparent;
}

.headers{
	background: transparent;
	color: black;
}

.headers:hover{
	background: transparent;
	color: black;
}

td{
	color:black;
	max-width:200px;
	border-radius: 5px;
	border: 1px solid black;
}

tr{
	background: rgba(0,0,0,0.3);
}

tr:hover{
	background: rgba(0,0,0,0.4);
	color: white;
}

footer{
	background-color: #080808;
	display:flex;
	justify-content:center;
	align-items:center;
	max-width: 100vw;
	z-index: 5;
}
.footer{
	padding-bottom: 20px;
	padding-top:20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	width:250px;
}

.footer a img{
	height: 40px;
	width: 40px;
	border-radius: 10px;
}

.novabiz{
	width: 300px;
}

/*
.advert{
	width:300px;
	height: 450px;
	border-radius: 20px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:space-around;
	background: rgba(255,255,255,0.05);
	box-shadow: 10px 5px 15px rgba(0,0,0,0.2);
	backdrop-filter: blur(10px);
}
*/

@media(max-width: 920px){
	.advertising{
		/*height: 1400px;*/
		flex-direction:column;
	}
}

.advert h5{
	color:white;
}

.projbutton{
	width: 150px;
	height:30px;
	border-radius: 20px;
	border: 2px solid lightgreen;
	cursor: pointer;
	background-color:transparent;
	display:flex;
	align-items:center;
	justify-content:center;
	position:relative;
}

#project{
	position:absolute;
	width:150px;
	height:30px;
	background: lightgreen;
	border-radius: 20px;
	width: 0%;
	height: 100%;
	transition: 0.5s;
	z-index: -1;
}

.projbutton:hover #project{
	width: 100%;
}

.projbutton a{
	text-decoration: none;
	color: white;
}

/*.advert img{
	width: 250px;
	max-height: 300px;
}*/

.advertising{
	padding-top: 80px;
	padding-bottom: 80px;
	display: flex;
	align-items:center;
	justify-content: space-around;
}

.date{
	padding-top:5px;
	padding-bottom: 5px;
}

#shape1{
	width: 50px;
	height: 50px;
	border-radius:50%;
	background: linear-gradient(white, lightgreen);
	z-index: -1;
}

@media(max-width:450px){
	#shape1{
		display:none;
	}
}

#bone{
	top:800px;
	max-height: 930px;
}

.advert{
	width:300px;
	height: 450px;
	border-radius: 20px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:space-around;
	transform-style:preserve-3d;
}

.advert .face{
	box-shadow: 2px 2px 5px white, -2px -2px 5px white;
	backdrop-filter: blur(10px);
	border-radius: 10px;
	background: rgba(255,255,255,0.05);
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	transform-style:preserve-3d;
	display:flex;
	flex-direction:column;
	justify-content:space-around;
	align-items:center;
	backface-visibility: hidden;
	transition: 2s ease-in-out;
	transform: perspective(500px) rotateY(0deg);
}


.advert .face.front{
	animation: animatefront 20s linear infinite;
}

.advert .face.back{
	animation: animateback 20s linear infinite;
	transform: perspective(500px) rotateY(180deg);
}

.face h5{
	text-align:center;
	color:white;
}

.advert img{
	width: 250px;
	max-height: 300px;
}

@keyframes animatefront{
	50%{
		transform: perspective(500px) rotateY(-180deg);
	}
	100%{
		transform: perspective(500px) rotateY(-360deg);
	}
}

@keyframes animateback{
	50%{
		transform: perspective(500px) rotateY(0deg);
	}
	100%{
		transform: perspective(500px) rotateY(-180deg);
	}
}

#bone{
	top:800px;
	max-height: 930px;
}

#btwo{
	top: 1730px;
}

#bthree{
	top:2530px;
	max-height:930px;
}

#bfour{
	top:3460px;
}

#bfive{
	top:4260px;
	max-height:930px;
}

#bsix{
	top:5190px;
}

#bseven{
	top:5990px;
	max-height:930px;
}

#leaderboard{
	width: 95%;
		margin-left:auto;
		margin-right:auto;
}

caption{
	text-align:center;
}

@media(max-width:650px){
	#leaderboard{
		width: 95%;
		margin-left:auto;
		margin-right:auto;
	}
}

.backgroundPhoto {
	background-image: url("../images/pitch.jpg");
	background-color: #cccccc; /* Used if the image is unavailable */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
	background-size: cover; /* Resize the background image to cover the entire container */
}
