/*Panel 1: Sticky diary*/
body {
	padding: 0;
	margin: 0;
	font-family: "Courier New";
	font-size: 30px;
}

main {
	background-color: beige;
	width: 1000px;
	/*margin: 0 auto;*/
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.box-sticky {
	margin: 0 auto;
	width: 70%;
	/*line-height: 15px;*/
	background-color: transparent;
	text-align: left;
	margin-top: 100vh;
	position: sticky;
	top: 5vh;
	height: 20px;
}

.just-box {
	width: 180px;
	/*height: 200px;*/
	margin-top: 100vh; /*this is just empty placeholder with height to it*/
}

.one {
	top: 5vh;
}
.two {
	top: 10vh;
}
.three {
	top: 15vh;
}
.four {
	top: 20vh;
}
.six {
	top: 25vh;
}
