.photos-grid-container a {
	aspect-ratio: 1;
	overflow: hidden;
}

.photos-grid-container img {
	height: 100%!important;
  	width: 100%;
  	object-fit: cover;
}

/* tinytheme colors - I adjusted the link and link visited and blockquote color for lightmode, 24-02-18 */

/* Light Mode */
:root {
	--text: #000000;
	--link: #C1947B;
	--link_visited: #67462B;
	--accent1: #333333;
	--accent2: #666666;
	--background: #ffffff;
	--code: #e3e3e3;
	--button-text: #ffffff;
	--blockquote: #ffffff;
	--note: #FFFF00;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
	:root {
		--text: #f8f8f2;
		--link: #8be9fd;
		--link_visited: #8be9fd;
		--accent1: #f8f8f2;
		--accent2: #f8f8f2;
		--background: #282a36;
		--code: #44475a;
		--button-text: #282a36;
		--blockquote: #44475a;
		--note: #44475a;
  }
}

/* changing font to archivo or at least to neogrotesque family*/

<style>
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap')
</style>

/* remove description from header */

.site-header { text-align: center; }

.header {
background: #000;
}
.description { display: none; }

