.grid-list {
	display: inline-flex;
	flex-direction: row;
    flex-wrap: wrap;
	width: 100%;
	padding-left: 25%;
}

.list-entry {
	position: relative;
	padding: 0%;
	width: 33.33%;
	overflow: hidden;
	aspect-ratio: 16/9;
}

@media (max-aspect-ratio: 3/2) {
	.list-entry {
		width: 50%;
	}
}

@media (max-aspect-ratio: 2.1/2) {
	.list-entry {
		width: 100%;
	}
}

.list-entry img {
	width: 100%;
	transform: scale(1.01);
	transition: 1.2s;
	aspect-ratio: 16/9
}

.list-entry:hover img {
	transform: scale(1.2) rotate(3deg);
}

.list-entry a {
	color: inherit;
  	text-decoration: inherit;
}

.list-entry-title {
	transition: .5s;
	position: absolute;
	width: 100%;
	background-image: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
	height: 20%;
	bottom: -20%;
}

.list-entry:hover .list-entry-title {
	bottom: 0%;
}

.list-entry-title p {
	font-size: 1.5vw;
	padding-left: 1.5vw;
	margin-top: 2%;
	color: azure;
	width: 100%;
	height: 100%;
	text-align: left;
}

.list-entry-tags {
	position: absolute;
	display: flex;
	justify-content: right;
	width: 100%;
	height: 10%;
	top: 0;
	right: 0;
}

.list-entry-tags img {
	width: 3rem;
	height: 3rem;
	color: white;
	background-color: rgba(256,256,256,.4);
	border-radius: .3rem;
	margin-top: .4rem;
	margin-right: .4rem;
	padding: .2rem;
}

@media (max-width: 800px) {
	.list-entry-tags img {
		width: 2rem;
		height: 2rem;
		color: white;
		background-color: rgba(256,256,256,.4);
		border-radius: .3rem;
		margin-top: .3rem;
		margin-right: .3rem;
		padding: .15rem;
	}
}

.list-sidebar {
	position: fixed;
	width: 25%;
	left: 0;
	height: 100vh;
	padding-top: 5vh;
	padding-left: 1.3vw;
	padding-right: 1.3vw;
	font-size: 1.2vw;
}

@media (max-aspect-ratio: 3/2) {
	.list-sidebar {
		font-size: 1.5vw;
	}
}
@media (max-aspect-ratio: 2.2/2) {
	.list-sidebar {
		font-size: 1.9vw;
	}
}

@media (max-aspect-ratio: 3/2) {
	.list-sidebar {
		font-size: 1.5vw;
	}
}
@media (max-aspect-ratio: 2.2/2) {
	.list-sidebar {
		font-size: 1.9vw;
	}
}