/* ---------------------------- index stylesheet ---------------------------- */

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

/* -------------- main layout -------------- */
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 */
	color: var(--light);
	font-family: nds;
	font-size: 20px;
	line-height: 1;
}

/* -------------- container -------------- */
.container {
	background-color: var(--black);
	border: 2px var(--white) solid;
	box-shadow: 10px 10px 25px var(--black);
	padding: 10px;
	margin: 5px;
	text-align: center;
	width: 950px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}
/* -------------- animation -------------- */
@keyframes background {
	0% {
		background-position: 0px 0px;
	}
	100% {
		background-position: 300px 200px;
	}
}

/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/

.ezgallery.montage {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.ezgallery.montage img {
	flex: auto;
	margin: 0 5px 5px 0;
	object-fit: contain;
	object-position: bottom;
}

.ezgallery.horizontal {
	display: grid;
	grid-gap: 5px;
	gap: 5px;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-auto-rows: minmax(200px, auto);
}

.ezgallery.horizontal a {
	text-align: center;
}

.ezgallery.horizontal img {
	text-align: center;
	vertical-align: middle;
	margin: 0 5px 5px 0;
	max-width: 200px;
	max-height: 200px;
	object-fit: contain;
	object-position: bottom;
}
