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

/* Colors

dark blue: #00183b
blue: #2e45cc
magenta: #eb54c5
dark-white: #f8f9fa

*/

/* Gallery */
.img-container{
	position: relative;
	width: 500px;
}

.gallery-img{
	cursor: pointer;
}

.img-desc{
	width: 100%;
	padding: 5px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #f8f9fa;

	position: absolute;
	bottom: 4px;
	left: 0;

	display: none;
}

.img-container:hover .img-desc{
	display: block;
}