html {
	display: flex;
	flex-direction: column;
	align-items: center;
	background:
		linear-gradient(to top, #cdd7ddb0, #cdd7dd70),
		url(./assets/background.jpeg) repeat top center;
	background-attachment: fixed;
	background-color: #cdd7dd;
	padding: 0;
	color: black;
}

body {
	margin-bottom: 32px;
}

.container {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 80vw;
	max-width: 1500px;
}

h1 {
	align-self: center;
	font-family: 'Archivo Black', sans-serif;
	font-size: 80px;
	text-align: center;
	text-transform: uppercase;
	margin: 1rem 0 0 0;
}

h2 {
	align-self: center;
	font-family: 'Archivo Black', sans-serif;
	font-size: 56px;
	text-align: center;
	text-transform: uppercase;
	margin: 1rem 0 0 0;
}

div.title {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

h3 {
	align-self: flex-start;
	font-family: 'Kanit', sans-serif;
	font-size: 24px;
	font-weight: 600;
	text-align: left;
	margin-top: 1rem;
}

h3.project-title {
	margin: 0;
	color: #000;
	border: 1px solid #666;
	border-radius: 20px;
	padding: 0 10px;
	flex-wrap: nowrap;
	white-space: nowrap;
}

h3.project-title a {
	text-decoration: none;
	color: #000;
	display: flex;
	align-items: center;
}

h3.project-title a img {
	height: 20px;
	width: auto;
	color: inherit;
}

h3.project-title a:visited {
	color: #333;
}

h4 {
	font-family: 'Kanit', sans-serif;
	font-size: 20px;
	font-weight: 500;
	text-align: left;
	margin: 0.5rem 0 0 0;
}

p {
	font-family: 'Kanit', sans-serif;
	font-size: 20px;
	font-weight: 200;
	text-align: left;
	margin: 0;
}

p a {
	display: flex;
	flex-direction: row;
	align-items: center;
}

p img {
	height: 25px;
	width: auto;
	object-fit: contain;
	margin: 5px;
}

a {
	color: rgb(84, 94, 229);
}

.attribute-container {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: stretch;
	min-width: 250px;
	max-width: 400px;
}

.attribute-container a {
	text-decoration: none;
	color: #000;
}

.attribute-container a:visited {
	color: #000;
}

.experience-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.main-column {
	display: flex;
	flex-direction: column;
	align-items: center;

	flex: 1;

	margin: 0 2rem;
	max-width: 800px;
}

.info-bar {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: stretch;
	flex: 1;

	min-width: 300px;
	max-width: 300px;
	margin: 0;
	padding: 8px 8px;

	border-radius: 10px;
	background-color: #b5ddd1;
	border: 2px solid black;
	font-weight: bold;
	color: black;
	box-shadow: 3px 4px 0px 1px black;
}

.info-bar h4 {
	font-weight: bold;
}

.project-container {
	display: flex;
	flex-direction: column;

	margin-bottom: 2rem;
	overflow: hidden;

	border-radius: 10px;
	background-color: #ffee8c;
	border: 2px solid black;
	font-weight: bold;
	color: black;
	box-shadow: 3px 4px 0px 1px black;
}

.project-header {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	background-color: #c4c4c4;
	padding: 5px;
}

.project-header .dummy-button-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: 105px;
}

.project-header .dummy-button {
	border-radius: 10px;
	height: 10px;
	width: 10px;
	margin: 5px;
	border: 1px solid #555;
}

.project-header img {
	height: 25px;
	object-fit: contain;
	margin: 0 4px;
}

.project-body {
	display: flex;
	flex-direction: column;
	padding: 8px 4px;
}

.project-body > p > a {
	display: inline-flex;
}

.project-img img {
	width: calc(100% + 10px);
	margin: -8px -4px;
}

.project-links {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	margin-top: 8px;
}

.profile-header-container {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}

.profile-image-container {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.profile-links {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: space-around;
}

.profile-links img {
	margin-left: 4px;
	margin-right: 4px;
}

.profile-img-div {
	width: 200px;
	height: 200px;
	margin: 8px 16px;
	border-radius: 50%;
	background-size: 100px;
	border: 2px solid black;
	font-weight: bold;
	color: black;
	box-shadow: 4px 4px 0px 1px black;
}

.more-button {
	background-color: orange;
	border-radius: 10px;
	border: 1px solid black;
	font-weight: bold;
	color: black;
	box-shadow: 2px 3px 0px 1px black;
}

.more-button:active {
	box-shadow: none;
	transform: translate(2px, 3px);
}

.logo-container {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
	gap: 10px;
}

.logo-container img {
	align-self: center;
	justify-self: center;
	width: 50px;
	overflow: hidden;
}

.logo-container div {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-end;
}

.logo-container p {
	text-align: center;
	margin-top: 5px;
	font-size: 10px;
	font-weight: bold;
	border-radius: 5px;
	border: 1px solid black;
	color: black;
	box-shadow: 2px 3px 0px 1px black;
}

@media only screen and (max-width: 1350px) {
	.container {
		flex-direction: column;
		align-items: stretch;
	}

	.main-column {
		margin: 2rem 0;
		max-width: 100%;
	}

	.info-bar {
		align-items: stretch;
		max-width: 100%;
	}

	.experience-container {
		flex-direction: row;
		justify-content: space-between;
	}

	.attribute-container {
		margin: 0 5px;
	}

	.profile-header-container .bio {
		padding: 8px;
		min-width: 350px;
		flex: 1;
	}
}
