body{
    max-width: 1440px;
      margin: 10;
      padding: 0;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: center;
      justify-items: center;
      justify-self: center;
      font-family: 'Segoe UI', sans-serif;
      color: black;
}
    canvas {
      position: fixed;
      top: 0;
      left: 0;
      background: #ffffff;
      z-index: -1;
    }


    main {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1;
      text-align: center;
      pointer-events: none;
    }

    h1 {
      font-size: 6rem;
      font-weight: 900;
      text-transform: uppercase;
      color: transparent;
      -webkit-text-stroke: 2px black;
      text-stroke: 2px black;
      pointer-events: none;
      margin: 0;
    }

    .cta {
      margin-top: 20px;
      font-size: 1.2rem;
      background: black;
      color: white;
      padding: 12px 24px;
      border-radius: 5px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 1px;
      border: none;
      pointer-events: auto;
    }

    .cta:hover {
      background: #333;
    }
    .outline {
  color: transparent;
  -webkit-text-stroke: 2px black;
  text-stroke: 2px black;
}

.admin-gestion-box {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
}

.admin-gestion-box form {
  margin-bottom: 30px;
}

.admin-gestion-box label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.admin-gestion-box select,
.admin-gestion-box input,
.admin-gestion-box textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.admin-gestion-box button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #333;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.admin-gestion-box button:hover {
  background: #555;
}

.admin-gestion-box .btn-delete {
  background: #c62828;
}

.admin-gestion-box .btn-delete:hover {
  background: #b71c1c;
}
