  *, *::before, *::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }

  html { 
    min-height: 100%;
    background-color: #7F1525;
  }

  body {
    height: 100%;
  }



/* ------------------------------------------------------ */
/* --- Mise en forme des pages article d'actualités  --- */
/* ---------------------------------------------------- */

.contenant {
	display: flex;
	width: 100%;
	margin: 0 auto;
	background-color: #F5DDD2;
}


.section-article {
    padding: 100px 60px 20px 60px;
    max-width: 67%;
    margin: 0 auto;
}

.section-article h1 {
	font-family: "Audiowide", sans-serif;
    margin-bottom: 20px;
	color: #7F1525;
	font-size: 2.5rem;
}

.date-article {
	font-family: Verdana, sans-serif;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 40px;
}

.resume-article {
    margin-bottom: 20px;
	color:#000;
	font-family: verdana;
	font-style: italic;
}

.aarticle {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    color: #000;
    overflow: hidden;
}

.contenant-image-article {
    position: relative;
    width: 100%;
}

.contenant-image-article img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

#credits {
	font-family: "Audiowide", sans-serif;
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #F5DDD2;
    padding: 5px 10px;
}

#credits-border {
	font-family: "Audiowide", sans-serif;
    position: absolute;
    bottom: 10px;
    left: 10px;	
    color: #F5DDD2;
	-webkit-text-stroke: 1px #7F1525;
	padding: 5px 10px;
    border-radius: 5px;
}

.article-contenu {
    padding-top: 20px;
    width: 100%;
}

.article-contenu p {
    padding-top: 10px;
	font-family: verdana;
}

.article-contenu a {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

.article-contenu a:hover {
	color: #7F1525;
}

.autres-news {
	padding: 80px 20px 20px;
	display: flex;
	flex-direction: column;
	background-color: #7F1525;
}

.autres-news h2 {
	font-family: "Audiowide", sans-serif;
	color: #F5DDD2;
    margin-bottom: 20px;
	font-size: 2.5rem;
}


.alerte-news {
	position: relative;
	border: solid;
	border-image: linear-gradient(45deg, #7F1525, #F5DDD2) 1;	
	border-width: 5px;
	border-radius: 10px;
	margin:10px;
	padding: 10px;
	transition: transform 0.3s ease-in-out;
}

.alerte-news:hover {
	border: solid;
	border-color: #F5DDD2;
	border-width: 5px;
	transform: scale(1.04);
	z-index: 10;
}

.alerte-news a {
	text-decoration: none;
}

.alerte-news h3 {
	font-family: "Audiowide", sans-serif;
	color: #F5DDD2;
	text-shadow: 1px 1px 2px #000 ;
	font-size: 1.5rem;
}

.alerte-news p {
	color: #F5DDD2;
	font-family: Verdana;
}



@media (max-width: 49em) {
	.contenant {
	flex-direction: column;
	}

	.section-article {
		max-width: 100%;
	}

	.autres-news {
		padding: 20px 60px 20px 60px;
		max-width: 100%;
	}
}