html {
	background-color: ivory;
	font-family: Arial;
	color: black;
	max-width: 1024px;
	margin: auto;
}

div.header {
	display: grid;
	justify-items: center;
	text-align: center;
	margin: 10px;
	padding: 10px;
}

div.contacts {
	text-align: center;
}

div.contact {
	display: inline-block;
	margin-left: 10px;
	margin-right: 10px;
}

div.carouselle {
	display: flex;
	overflow-x: scroll;
}

div.carouselle_item {
	padding: 10px;
	margin: 10px;
	flex: 0 0 500px;
}

img.project_logo {
	float: left;
	margin: 10px;
	height: 100px;
}

img.doc {
	border: solid black 1px;
	margin: 20px;
	max-width: 300px;
	max-height: 300px;
}

div.skill {
	display: inline-block;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 2px;
	border-radius: 10px;
	background-color: gray;
	color: ivory;
}

[tooltip]:hover::after {
	display: block;
	position: absolute;
	content: attr(tooltip);
	background-color: black;
	color: ivory;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 2px;
	border-radius: 10px;
	min-width: 120px;
	max-width: 200px;
}

div.time_container {
	display: flex;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	margin-left: 2em;
	border-left: solid black 4px;
}

div.time_point {
	display: inline-block;
	position: relative;
	float: left;
	vertical-align: top;
	min-width: 200px;
	padding-left: 10px;
}

div.time_point::before {
	content: "";
	position: absolute;
	left: -0.55em;
	top: 0.1em;
	width: 0.4em;
	height: 0.4em;
	background: ivory;
	border: solid 4px black;
	border-radius: 50%;
}

div.time_point_desc {
	display: inline-block;
	vertical-align: top;
	max-height: 1em;
	overflow: hidden;
	transition: max-height 1s ease-out;
}

div.time_point_desc:hover {
	max-height: 1000px;
	transition: max-height 1s ease-in;
}

div.time_point_desc:checked {
	max-height: 1000px;
	transition: max-height 1s ease-in;
}

div.docs {
	text-align: center;
}
