/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&family=VT323&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

nav {
  background: linear-gradient(90deg, #ff00cc, #3333ff);
  padding: 15px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav a {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition: 0.3s;
}

nav a:hover::after {
  transform: scaleX(1);
}

.slogan {
  text-align: left;              /* ← slogan aligné à gauche */
  font-family: 'VT323', monospace;
  font-size: 28px;
  margin-top: 20px;
  margin-left: 20px;             /* ← petit décalage pour que ça soit joli */
  color: #ff00cc;
  text-shadow: 0 0 5px #ff00cc;
}

.slogan-box {
  width: fit-content;                     /* cube ajusté au texte */
  padding: 10px 15px;
  margin-left: 20px;                      /* aligné à gauche */
  margin-top: 20px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff00cc, #00eaff); /* gradient rétro */
  border-radius: 10px;                    /* arrondi rétro */
  border: 3px solid white;                /* cube brillant */
  box-shadow: 0 0 15px #ff00cc, 0 0 25px #00eaff; /* glow néon */
}

.slogan-box p {
  font-family: 'VT323', monospace;        /* police rétro */
  font-size: 28px;
  color: white;
  margin: 0;
}


