* {
	box-sizing: border-box;
}

a, a:visited, a:hover {
	color: var(--a);
	text-decoration: none;
	font-weight: 400;
}

i {
	text-align: center;
	margin: 0 2px;
}

html {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 15px;
	height: 100%;
	overflow-y: auto;
}

body {
	background: linear-gradient(var(--bg-top), var(--bg-bot));
	background-repeat: no-repeat;
	background-attachment: fixed;
	margin: 0;
	height: 100%;
	color: var(--article-text);
	text-shadow: 1px 1px 0 var(--text-shadow-light);
}

h1, h2, h3, h4 {
	font-family: Montserrat;
	font-weight: 600;
}

main, header, footer, section {
	max-width: 600px;
	margin: auto;
	padding: 0 20px;
}

header {
	margin: 30px auto 0 auto;
	text-align: center;
}

header img {
	float: left;
	height: 70px;
	margin: 0 -100% 0 0;
}

header h1 {
	font-size: 45px;
	font-weight: 800;
	margin: 0;
}

article {
	width: 100%;
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
	text-align: center;
	background: linear-gradient(var(--article-top), var(--article-bot));
	box-shadow: 0 1px 1px var(--article-shadow);
}

h2 {
	margin: 0 0 20px 0;
}

#map {
	width: 100%;
	height: 400px;
	border-radius: 8px;
	box-shadow: 0 1px 1px var(--article-shadow);
}

p.important {
	color: var(--p-important);
	text-shadow: 1px 1px 0 var(--text-shadow-dark);
	font-weight: 800;
}

p.info {
	font-size: 0.9em;
}

.form {
	margin: 40px 0 0 0;
}

.hr {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 20px 0;
}

.form .hr {
	width: 100%;
}

.hr::before, .hr::after {
	border-top: 1px solid;
	content: "";
	flex: 1;
	margin: 10px;
}

.form p, .form form {
	width: 80%;
}

.checkbox {
	margin: 10px;
	display: flex;
	align-items: center;
	width: 100%;
}


.checkbox input[type="checkbox"] {
	position: relative;
	top: 1px;
	margin: 0 10px 0 0;
}

.checkbox label {
	display: inline-block;
	text-align: left;
}

.validate {
	text-align: center;
	width: 100%;
}

footer {
	margin: 0 auto;
	padding: 10px;
	font-size: 0.8em;
	text-align: center;
}

.actu {
	display: flex;
	padding: 15px;
	align-items: center;
	flex-wrap: nowrap;
}

.actu .img {
	min-width: 200px;
	min-height: 200px;
	max-width: 200px;
	max-height: 200px;
	margin: 0 30px 0 0;
	border-radius: 8px;
	box-shadow: var(--button-shadow);
}

.actu:nth-of-type(2n) .img {
	order: 2;
	margin: 0 0 0 30px;
}

.actu .content {
	text-align: left;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.actu .content h3 {
	margin: 0 10px 10px 0;
	display: inline-block;
	text-align: left;
}

.actu .content p {
	min-width: 100%;
	text-align: justify;
}

.actu input[type="text"], .actu input[type="date"] {
	margin: 0;
}

.actu input[type="text"] {
	width: 300px;
}

.actu input[type="date"] {
	width: auto;
}

.actu .delete {
	width: 100%;
	display: flex;
	justify-content: center;
}

@media all and (max-width: 750px) {
	.actu .img {
		min-width: 150px;
		min-height: 150px;
		max-width: 150px;
		max-height: 150px;
	}
}

@media all and (max-width: 600px) {
	.actu .img {
		min-width: 150px;
		min-height: 150px;
		max-width: 150px;
		max-height: 150px;
	}

	.form p, .form form {
		width: 100%;
	}
}
