/* SKILLS */
.dev-icons img {
	width: 50px;
	height: 50px;
}

/* PROJECTS */
.projects-content {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.project {
	width: calc(33.333333% - 20px);
	margin-bottom: 40px;
	box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
	transition: transform 0.25s ease-out;
}
@media only screen and (max-width: 1280px) {
	.project {
		width: calc(50% - 20px);
	}
}
@media only screen and (max-width: 768px) {
	.project {
		width: 100%;
	}
}
.project:hover {
	transform: scale(1.05);
}

.project a {
	width: 100%;
	height: 60%;
}

.project a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.project .card-body {
	display: flex;
	flex-direction: column;
}

.project .technologies {
	margin-top: auto;
}

.project .technologies img {
	width: 50px;
	height: 50px;
}
