* {
	padding: 0;
	margin : 0;
	outline: none;
}

html {
	scroll-behavior: smooth; 
}

body {
	font: 500 16px "Bellota Text", sans-serif;
}

body,
html {
	background: black;
	color: white;
	font-family: sans-serif;
	margin: 0;
	padding: 0;
	overflow: hidden;
	height: 100%;
	width: 100%;
}

#boundary {
	position: absolute;
	top : 0;
	left: 0;
	width : 100%;
	height: 100%;
}

#x-axis {
	animation: x-move 8s linear infinite alternate;
	position : absolute;
	will-change: transform;
}

#y-axis {
	animation: y-move 5s linear infinite alternate;
	align-items: center;
	display: flex;
	flex-direction: column;
	will-change: transform;
}

#time {
	font-size: clamp(2.5rem, 10vw, 4rem);
	font-weight: bold;
	line-height: 1;
	white-space: nowrap;
}

#date {
	font-size: clamp(1rem, 4vw, 1.5rem);
	font-weight: bold;
	opacity: 0.8;
	white-space: nowrap;
}

@keyframes x-move {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(var(--dist-x));
	}
}

@keyframes y-move {
	from {
		transform: translateY(0);
	}

	to {
		transform: translateY(var(--dist-y));
	}
}

