html{
	font-size: 20px;
	scroll-behavior: smooth;
	scroll-padding-top: 40rem;
	text-size-adjust: none;
}

body{
	background-image: url("../res/earth.jpg");
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0;
	font-family: sans-serif;
	min-height: 100%;
}

a{
	box-shadow: 0px 0px 16px black;
	background-color: #f06e00;
	color: white;
	padding: 14px 25px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	border-radius: 16px;
	user-select: none;
}

a:hover, a:active{
	background-color: red;
}

.header{

}

.navbar{
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	top: 0;
	left: 0;
	right: 0;
	z-index: 98;
	position: fixed;
}

.logo{
	height: 100px;
	position: relative;
	box-shadow: 0px 0px 16px black;
}

.logo_fade{
	height: 100px;
	position: fixed;
	opacity: 1.0;
	z-index: 99;
	transition: opacity 0.5s ease-in-out;
}

.logo_fade:hover{
	opacity: 0.0;
}

a.logo{
	padding: 0;
	margin: 0;
	box-shadow: 0px;
}

a.logo_fade{
	padding: 0;
	margin: 0;
	box-shadow: 0px;
}

.navlinks{
}

.headtext{
	color: white;
	text-shadow: 2px 2px 4px black;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 400px;
	margin-top: 100px;
}

.headtext a{
	text-shadow: 0px 0px;
}

.section{
	padding-top: 16px;
	padding-bottom: 16px;
}

.subsection{
	background-color: rgba(200, 200, 200, 0.7);
	border-radius: 16px;
	padding-top: 8px;
}

.content{
	/*background-color: white;*/
	/*box-shadow: 0px 0px 16px black;*/
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	/*background-image: url("/res/urban.png");*/
	background-size: 100%;
	border-radius: 16px;
}

.content h1, .content h2{
	text-align: center;
	/*
	background-color: #f0f0f0;
	border-radius: 8px;
	box-shadow: 0px 0px 16px black;
	*/
}

.content h1{
	color: white;
	text-shadow: 0px 0px 16px black;
	padding: 16px;
	text-shadow: 0px 0px 16px black;
}

.content h2{
	color: black;
}

#about{
	display: none;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#about:target{
	display: block;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#agenda{
	display: none;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#agenda:target{
	display: block;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#speakers{
	display: none;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#speakers:target{
	display: block;
}

#demos{
	display: none;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
#demos:target{
	display: block;
	padding-bottom: 32px;
	padding-left: 64px;
	padding-right: 64px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

#about p{
	font-size: 20px;
	line-height: 1.5;
	background-color: #f0f0f0;
	padding: 8px;
	display: flex;
	border-radius: 8px;
	box-shadow: 0px 0px 16px black;
}

.content h3{
	text-align: left;
	font-size: 22px;
	line-height: 1.5;
	background-color: #f0f0f0;
	border-radius: 8px;
	padding: 8px;
	box-shadow: 0px 0px 16px black;
}

.tuple_row{
	display: flex;
	flex-direction: row;
	column-gap: 10px;
	margin-top: -22px;
}

.tuple_row h3{
	font-size: 20px;
}

.bullet_image{
	margin-top: 20px;
	margin-bottom: 20px;
	/*width: 200px;
	height: 200px;
	max-height: 300px;*/
	border-radius: 8px;
	box-shadow: 0px 0px 16px black;
}

.bullet_content{
	background-color: #f0f0f0;
	border-radius: 8px;
	flex: 1;
	padding: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 16px black;
}

.bullet_content h3, .bullet_content h2, .bullet_content p{
	box-shadow: 0px 0px;
}

.bullet_content h3{
	text-align: center;
}

.gallery{
	margin-top: 32px;
	margin-bottom: 32px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 16px;
	background-color: orange;
	height: 300px;
	max-width: 1200px;
	overflow: hidden;
	box-shadow: 0px 0px 16px black;
}

.gallery img{
	margin: 0;
	height: 100%;
	min-width: 50%;
	object-fit: cover;
}

.gallery_container{
	height: 100%;
	width: 1200px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	animation: gallery_scroll 30s linear infinite;
}

@keyframes gallery_scroll{
	from{
		transform: translateX(0);
	}
	to{
		transform: translateX(-250%);
	}
}

.footer{
	text-align: center;
	/*
	background-color: rgba(200, 200, 200, 0.8);
	border-radius: 16px;
	*/
}

.some_row{
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 10px;
	padding-bottom: 32px;
}

.some_logo{
	height: 100px;
	border-radius: 100%;
	/*box-shadow: 0px 0px 16px black;*/
}

a.some_logo{
	padding: 0;
	margin: 0;
	box-shadow: 0px;
}
