main {
	text-align: left;
}

main h2 {
	display: inline-block;
	font-size: 1.65em;
	padding: 5px 35px 5px 15px;
	margin-left: 25px;
	border-left: 5px double var(--theme-color);
	text-align: left;
	background-color: rgba(53, 143, 233, 0.2);
	color: rgba(0, 0, 0, 0.8);
}

.button {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 0;
	margin: auto;
	width: 256px;
	color: var(--theme-color);
	background-color: var(--secondary-color);
	border: 2px solid var(--theme-color);
	border-radius: 3px;
	transition: 0.25s;
	font-size: 1em;
	outline: none;
}

.button:hover {
	color: var(--hover-color);
	background-color: var(--theme-color);
}

#liste-projets {
	justify-content: flex-start;
}

#bottom {
	display: flex;
}

#bottom section {
	flex: 1;
}

#about p {
	margin: 5px 25px 15px 35px;
	text-align: justify;
}

#search-box-main {
	display: block;
	border: none;
	border-bottom: 2px dashed var(--theme-color);
	padding: 5px;
	margin: 35px auto;
	font-size: 1.2em;
	width: 400px;
	transition: 0.25s;
}

/* Temporaire */
/*#search-box-main:hover {
	border-bottom-style: solid;
}

#search-box-main:focus {
	border-bottom-style: solid;
	transform: scale(1.05);
}

#search-projet {
	cursor: pointer;
}

#search-projet:focus {
	outline: none;
}*/

#find,
#search-box-main,
#search-projet {
	cursor: not-allowed;
}

#search-box-main:disabled {
	background-color: unset;
}