* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

nav {
	background: black;
	color: white;

	margin: 0px 0px 20px;

	padding: 20px 20px;
	display: flex;
	justify-content: center;
}

#slider {
	width: 300px;
	margin: 0px 20px;
}

body {
	width: 100vw;
	height: 100vh;
}

#container {
	padding: 10px 10px;
	border: 2px dotted black;
	border-radius: 5px;
	background-color: white;

	width: fit-content;
	margin: 0px auto;
	height: 80%;

	display: flex;
	flex-direction: row;
	align-items: end;

	gap: 0;
}

.element {
	text-align: center;
	color: white;
	background: rgb(0, 102, 255);
	border: 1px solid black;
	width: 10px;
}
