.fullscreen {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #F00;
	background-image: url('https://som-basket.millavois.com/tournoi2026/img/carte2026.jpg');
	background-size: cover; /* pour que l'image couvre tout l'élément */
	background-position: center; /* pour centrer l'image */
}

.content h1, .content h3 {
	display: block;
	padding: 10px 20px;
	background: #000;
	color: #fff;
	border-radius: 5px;
	margin: 10px;
	opacity: 0.8;
}

.content h1 {
	font-size: 200%;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	background: #003153;
	color: #fff;
	border-radius: 5px;
	margin-top: 25px;
	opacity: 0.8;
	text-decoration: none;
}

.news-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.news-item {
  margin-bottom: 40px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.news-meta {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.news-date, .news-time {
  margin-right: 10px;
}

.news-tags {
  margin-top: 10px;
}

.tag {
  font-size: 14px;
  font-weight: bold;
  color: #337ab7;
  margin-right: 10px;
  border-radius: 10px;
  padding: 5px 10px;
  background-color: #f7f7f7; /* Appliqué uniquement sur les tags */
}

.tag:hover {
  background-color: #f0f0f0;
}

