@import "common.css";

body > .section::after
{
	display: block;
	content: "";
	width: 100%;
	height: 1px;
	background-color: black;
	margin-top: 32px;
	margin-bottom: 24px;
}

#about-section > .section-title
{
	font-size: xxx-large;
}

.section-title
{
	display: inline-block;
	font-size: xx-large;
	margin-bottom: 36px;
}

.project, .course, .internship
{
	margin-bottom: 10px;
}

.course
{
	text-align: left;
}

.course > span
{
	font-weight: bold;
}

#projects-section > div:not(:first-child)
{
	display: grid;
	grid-template-columns: repeat(auto-fill, 400px);
	grid-column-gap: 12px;
	justify-content: space-between;
}

.project
{
	border: 1px solid black;
	padding: 6px;
	transition: transform 0.2s;
}

.project:hover
{
	transform: scale(1.03);
}

.project > a
{
	display: grid;
	grid-template-columns: 128px 1fr;
	grid-template-rows: auto 1fr;
	grid-gap: 12px;
	text-decoration: none;
	color: inherit;
}

.project > a > img
{
	display: inline-block;
	height: 128px;
	grid-column: 1;
	grid-row: 1 / 4;
}

.project > a > .name
{
	font-weight: bold;
	font-size: large;
}

.project > a > .description
{
	grid-column: 2;
}

.project > a > .conference
{
	font-size: x-small;
	grid-column: 2;
	grid-row: 3;
	font-style: italic;
}
