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

*{
	margin: 0px;
	padding: 0px;
}

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

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

.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;
	flex-direction: column;
	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;
}

.btnactive{
	position: relative;
}

.btnactive svg{
	position: absolute;
	bottom: 20px;
}

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

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

nav a svg {
	opacity: 0;
    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;
	}
}

.logoBTN{
	text-decoration: none;
	user-select: none;
	color: black;
}

.maincontent{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.dotindicator {
	margin-top: 20px;
    display: flex;
    gap: 8px;
    z-index: 2000;
	justify-content: center;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(220, 220, 220, 1);
    transition: all 0.3s ease;
}

.dot.active {
    background:#0111FF;
}

.description{
	font-family: "Source Code Pro", monospace;
	font-size: 12px;
	color: black;
	padding: 5px 10px;
	margin-top: -40px;
	z-index: 999;
	opacity: 0;
	margin-bottom: 10px;
	
}

.morebtn{
	background: #0111FF;
	border-radius: 3px;
	transition: 0.3s;
	
}

.morebtn:hover{
	background: #000000;
}

.content {
    position: relative;
    flex-shrink: 0;
    width: 400px;
	height: 300px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.content a {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-60px); 
    transition: opacity 0.3s ease-out,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.content.active .vid1 {
    transform: translateY(-40px);
}

.content.active a {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.description {
    transition: opacity 0.5s ease-out;
}


.description {
    opacity: 0; 
    transition: opacity 0.3s ease-out; 
    min-height: 1.2em;
}


.content.active .description {
    opacity: 1;
}

.vid, .vid1 {
    scroll-snap-align: center;
    transition: transform 0.3s ease; 
    transform: translateY(0);       
    flex-shrink: 0;                 
}


.vid.active, .vid1.active {
    transform: translateY(-10px);   
}


.contentContainer {
    display: flex;
    overflow-x: scroll; 
    width: 100%;
    scroll-snap-type: x mandatory;
    align-items: center; 
    padding: 0; 
    height: 500px;
    box-sizing: border-box;
    scrollbar-width: none;
	margin-top: 40px;
}

.content:first-child {
    margin-left: calc(50% - 200px);
}

.content:last-child {
    margin-right: calc(50% - 200px);
}


.vid, .vid1 {
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: transform 0.4s ease;
}

.vid{
	scroll-snap-align: center;
	width: 400px;
	height: 400px;
	margin: 0px;
}

.vid1{
	scroll-snap-align: center;
	width: 400px;
	height: 400px;
	margin: 0px;
}

.container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100dvh;
}

.dole{
	user-select: none;
	color:rgba(0,0,0,0.00);
	padding-top: 100px;
}

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


::-webkit-scrollbar {
    display: none;
}


.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;
}

.headlineContainer2{
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
	opacity: 0;
}


footer{
	font-family: "Source Code Pro", monospace;
	display: flex;
	font-size: 11px;
	color: #A1A1A1;
	margin: 10px 20px;
}

.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;
}

@media(max-width:500px){
	.vid1{
		width: 300px;
		height: 300px;
	}
	
	.vid{
		width: 300px;
		height: 300px;
	}
	
	.contentContainer{
		height: 405px;
	}
	
	.content{
		width: 350px;
	}
	
	.content:first-child {
    margin-left: calc(50% - 150px);
}

    .content:last-child {
    margin-right: calc(50% - 150px);
	}
	
	
}

@media(max-width:400px){
	.vid1{
		width: 260px;
		height: 260px;
	}
	
	.vid{
		width: 260px;
		height: 260px;
	}
	
	.contentContainer{
		height: 375px;
	}
	
	.content{
		width: 320px;
	}
	
	.content:first-child {
    margin-left: calc(50% - 130px);
}

.content:last-child {
    margin-right: calc(50% - 130px);
	}
}