/* ---------------------------- diary stylesheet ---------------------------- */

/* -------------- colors -------------- */

:root {
	/* ----- purples ----- */
	--dark: #2301a9;
	--mediumdark: #3810d1;
	--medium: #9985e8;
	--mediumlight: #b6a8ef;
	--light: #d6cef6;
	/* ----- grayscale ----- */
	--black: #171717;
	--white: #ffffff;
}

/* -------------- page -------------- */
html {
	background-image: url(/angelnetcastv2/assets/images/backgrounds/grid.png);
	animation: background 12s infinite linear; /* sometimes i comment this bc the moving background kills my laptop live preview. if ur snoopin in the code and see this off, remind me 2 turn it back on lol */
}

/* -------------- grid -------------- */

/* -- container -- */
.grid-cont {
	width: 950px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	display: grid;
	grid-template-areas: "nav content content";
	padding: 10px;
}

/* -- all sections -- */
.grid-sec {
	background-color: var(--black);
	border: 2px var(--white) solid;
	box-shadow: 10px 10px 25px var(--black);
	padding: 25px;
	margin: 5px;
}

/* -- indvidual sections -- */
#g1 {
	grid-area: nav;
}
#g2 {
	grid-area: content;
	height: 600px;
	overflow-y: scroll;
}

/* -------------- animation -------------- */
@keyframes background {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 300px 200px;
	}
}
