/* Style pour le conteneur du header */
#norbert-header {
  text-align: center;
  padding-bottom: 2rem;
  background-color: #000; /* Fond noir pour le header */
  border-bottom: 2px solid #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 2rem 2rem;
}

#norbert-header,
h1 {
  margin-top: 0;
}

/* Style pour le titre principal */
.main-title {
  font-family: "Star Jedi Hollow", sans-serif;
  font-size: 48px;
  color: #00ffff;
  /* text-transform: uppercase; */
  letter-spacing: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.main-title:hover {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(0, 255, 255, 1);
}

.main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, #00ffff, transparent);
  transition: opacity 0.3s ease;
}

.main-title:hover::after {
  opacity: 1;
}

#subtitle {
  font-family: "Star Jedi Monospaced", monospace;
  font-size: 16px;
  color: #bbb;
  letter-spacing: 2px;
  margin-top: 10px;
  /* padding: 1rem 0.5rem; */
}

@media (max-width: 600px) {
  #norbert-header {
  }
  .main-title {
    font-size: 2rem;
  }
  #subtitle {
    font-size: 14px;
    margin: 0;
  }
}
