body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(to bottom, #050b0a, #1c3d38);
  color: white;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Logo géant en fond */
.background-logo svg {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: auto;
  z-index: 0;
  pointer-events: none;
}


/* Contenu principal */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 10vh;
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 13rem;
  padding: 0 1rem;
  line-height: 1.8;}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  line-height: 2
}

.btn {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
