@charset "UTF-8";
/* CSS Document */

html, body{
	background-color: #ffffff;
}

body{
	font-family: "acumin-pro-semi-condensed", sans-serif;
    font-weight: 400;
    font-style: italic;
	min-height: 100dvh;
}

.loading{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	user-select: none;
	pointer-events: none;
}

.navcontainer{
	display: flex;
	gap: 10px;
	opacity: 1;
	transition: 0.3s;
}

.navhidden{
	display: none;
	gap: 10px;
	height: 34px;
	opacity: 1;
	transition: 0.3s;
	position: fixed;
	bottom: 28px;
	width: 395px;
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
	padding: 8px 1px;
	border-radius: 6px;
	text-align: center;
	align-content: center;
	background:rgba(255,255,255,0.50);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 11111;
}

.navcontainer{
	display: flex;
	position: fixed;
	bottom: 28px;
	width: 395px;
	left: 50%;
	transform: translateX(-50%);
	justify-content: center;
	padding: 8px 1px;
	border-radius: 6px;
	color: black;
	text-align: center;
	align-content: center;
	background:rgba(255,255,255,0.50);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 11111;
}

nav a{
	display: flex;
	text-align: center;
	padding: 4px 6px 6px 6px;
	border-radius: 3px;
	width: 120px;
	justify-content: center;
	font-size: 12px;
	align-items: center;
	user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;  
    -ms-user-select: none; 
    -webkit-touch-callout: none;
	text-decoration: none;
	color: black;
	transition: 0.3s;
	font-family: "Source Code Pro", monospace;
	box-sizing: border-box;
	height: 34px;
	
}

.btnunactive:hover{
	background: #000000;
	color: white;
}

nav .btnactive{
	background: #0111FF;
	color: white;
	display: flex;
	justify-content: center;
	padding: 4px 6px 6px 6px;
}

@keyframes pulseOpacity {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

nav a svg {
    flex-shrink: 0;
    display: block;
}

nav a svg {
    animation: pulseOpacity 1.4s ease-in-out infinite;
}

@media(max-width:500px){
	nav a{
		font-size: 10px;
		width: 100px;
		
	}
	
	.navcontainer{
		width: 330px;
	}
	
	.navhidden{
		width: 330px;
	}
}

.headlineContainer{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: fixed;
	width: 100%;
	z-index: 1001;
	background: rgba(255,255,255,0.50);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	top: 0;
}

.center{
	display: flex;
	justify-content: center;
}

.headline{
	font-weight:900;
	font-size: 18px;
	margin: 11px;
	text-align: center;
}

.logoBTN{
	text-decoration: none;
	user-select: none;
	-webkit-user-select: none;
    -moz-user-select: none;  
    -ms-user-select: none; 
    -webkit-touch-callout: none;
	color: black;
}

.clock{
	color: black;
	font-family: "Source Code Pro", monospace;
	font-size: 11px;
	margin-right: 18px;
}

.year{
	color: black;
	font-family: "Source Code Pro", monospace;
	font-size: 11px;
	margin-left: 18px;
}

.year-color{
	color: #0111FF;
}

canvas {
  position: sticky;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 500px;
}

@media(max-width: 500px){
	canvas{
		width: 400px;
	}
}

@media(max-width: 400px){
	canvas{
		width: 360px;
	}
}

@media(max-width: 350px){
	canvas{
		width: 300px;
	}
}

#scrollcanvas {
  will-change: transform;
  transform: translateZ(0);
}

.canvascontainer{
	height: 400vh;
}

.canvaswrapper{
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.arrow {
    pointer-events: none;
	margin-top: 20px;

 
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}


#scrollarrow {
    animation: bounce 2s infinite ;
  
}