@charset "UTF-8";
/* CSS Document */

#about {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3em;
	padding: 2em 0;
}

#about-me {
	display: flex;
	align-items: center;
	gap: 3em;
	flex-direction: row;
	/* width: 55%;
	z-index:2;
	float: left; */
}

#about-text {
	flex: 3;
}

#about-image {
	flex: 2;
}

#about-image img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

#links {
	float:right;
	display: flex;
	flex-direction: row;
	gap: 3em;
}

.link-box {
	display: flex;
	flex-direction: column;
	gap: 0.25em;
	flex: 1;
}

#caption {
	width: 22%;
	margin-left: 100px;
	margin-top: 20vh;
	float:right;
}

/* Mobile */
@media (max-width: 768px) {
	#about {
		flex-direction: column;
		padding-top: 1em;
		gap: 2em;
	}
	#about-me {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	#caption {

	}
}
/*
Projects page
*/
.contentlist li {
	color: #666;
	font-size: 16px;
	font-family: "Courier", Courier, sans-serif;
	font-weight: normal;
	margin: 20px 20px 0px 20px;
}
.contentlist td {
	color: #666;
	font-size: 16px;
	font-family: "Courier", Courier, sans-serif;
	font-weight: normal;
	margin: 20px 20px 0px 20px;
}
.thumbnails h3 {
	color: #666;
	text-align: center;
	line-height: 20px;
}
.thumbnails a {
	border-bottom: none;
	display: block;
	width: 100%;
	margin: 0 0 2em 0;
	text-align: center;
	border-radius: 4px;
	box-shadow: inset 0 0 0 1px rgba(1, 123, 118, .5);
	background-color: rgba(1, 123, 118, 0.1);
	cursor: pointer;
	outline: 0;
	overflow: hidden;
	text-decoration: none;
}
.thumbnails a:hover {
	background-color: rgba(255, 255, 255, 0.25);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 0 0.5em 0 #aaa;
}
.column3 {
	float: left;
	width: 31%;
	padding: 5px;
}
.column4 {
	float: left;
	width: 23%;
	padding: 5px;
}
.row::after {
	content: "";
	clear: both;
	display: table;
}

/*
Contacts page
*/
#contact td {
	padding: 50px 50px 50px 50px;
}
#contact li {
	color: #666;
	font-size: 16px;
	font-family: "Courier", Courier, sans-serif;
	font-weight: normal;
	margin: 20px 20px 0px 20px;
}
#under-construction {
	border-top: thin solid #666;
	width: 50%;
	margin-left: 25%;
	padding-top: 60px;
	text-align: center;
	font-style: italic;
}
