:root {
  --largeur-image: 240px;
  --hauteur-image: 150px;
}
#galerie {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: safe center;
	align-items: flex-start;
	margin: 20px auto 0;
	padding: 0;
}
#galerie img {
	max-width: var(--largeur-image);
	max-height: var(--hauteur-image);
}
form#formuploadimg {
	width: 80%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
form#formuploadimg > button[type="submit"], form#formuploadimg > input[type=file]::file-selector-button {
	padding: 4px;
	width: 120px;
	border-radius: 4px;
}
form#formuploadimg > input[type="file"] {
	margin: 0 4px;
}
form#formuploadimg > input[type=file]::file-selector-button {
	border: none;
	background-color: orange;
	cursor: pointer;
}
form#formuploadimg > input[type=file]::file-selector-button:hover {
	background-color: coral;
}
#galerie > div {
	position: relative;
	max-width: var(--largeur-image);
	max-height: var(--hauteur-image);
	margin: 2px;
	padding: 0;
}
form.deletimg {
	position: absolute;
	right: 4px;
	bottom: 4px;
}
form.deletimg > input[type="submit"] {
	background-color: rgb(0 0 0/0);
	background-image: url("del20px.png");
	background-repeat: no-repeat;
	background-position: center;
	border: none;
	width: 20px;
	height: 20px;
	cursor: pointer;
}
