@charset "utf-8";
/* CSS Document */

* {
  margin: 0;
  padding: 0;
}

html {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

body {
	margin: 0;
  	padding: 0;
	background-color: #001528;
}

.navbar {
  	border-bottom: 1px solid #31ECA0;
}

.navbar-container,
.footer-container {
  margin: 0 auto;
  padding: 0 1rem;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

/* Logo */
.navbar-logo img {
  height: 40px;
  width: auto;
}


#boite{
  	display: grid;
  	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-auto-rows: 200px;
	grid-auto-flow: dense;
	font-size: 14px;

}

#boite > div{
	min-height: 200px;
	min-width: 200px;
}

.lottie {
      width: 200px;
      height: 200px;
      cursor: pointer;
      transition: transform 0.2s ease;
    }


.item {
	color: #31ECA0;
	border: 1px solid #31ECA0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	text-align: center;
	transition: transform 0.3s ease;

}

.item--txt {
	color: #31ECA0;
	font-variant: small-caps;
	line-height: 15px;
	justify-content:space-between;
	text-align: left;

}

.item--txt p{
	padding-left: 20px;
}

/* Bloc large : occupe 2 colonnes */
.item--large {
  grid-column: span 2;
}

/* Bloc haut : occupe 2 rangées */
.item--tall {
grid-column: span 2;
  grid-row: span 3;
}

.item--double {
  grid-column: span 4;
  grid-row: span 2;
margin-bottom: -2px;
	padding-top: 1px;
	background-color: #31ECA0;
	overflow: hidden;
}

.site-footer {
  background: #602CFF;
  color: white;
  padding: 3rem 0;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
	height: 400px;
}

.placeholder {
  background: transparent;
min-height: 200px;
  min-width: 200px;
  border: none;
}
