.container-projects {
	grid-column: 1 / span 2;
}

.project-block {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 8px;
	flex-shrink: 0;
}

.project-time, .project-description {
	display: flex;
	height: 160px;
	box-sizing: border-box;
	padding: 32px;
}

.project-time {
	justify-content: flex-end;
	align-items: center;
	width: 20vw;
	flex-shrink: 0;
}

.project-description {
	width: 100%;
	flex-direction: column;
	justify-content: center;
	background: var(--black);
	color: var(--white);
	transition: transform 100ms;
}

.project-description:hover {
	cursor: not-allowed;
	transform: scale(1.02);
}

.project-description h1 {
	font-size: 32px;
}

.project-description h2 {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.14em;
	font-size: 14px;
	margin-bottom: 8px;
}