	body {
	background: linear-gradient(45deg, #000000, #16161d);
	font-family: Montserrat, sans-serif;
	color: white;
}
	a {
	color: red;
}
	a:hover {
	color: green;
}
	li{
		padding: 5px;
		border: 5px solid yellowgreen;
		margin: 5px;
		width: min-content;
		list-style-type: none;

	}

	img:hover {
		box-shadow: 5px 5px 10px rgba(255, 255, 255, 0.5);
		
}
	.gallery img{
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: center;
		width: calc(25% - 20px);

}
@media only screen and (max-width: 480px) {
	.gallery img{
		width: calc(100% - 10px);
		
	}
}