/* Style de l'image de Norbert */
.norbert-photo {
  width: 100%;
  max-width: 240px;
  height: auto;
  border-radius: 10px;
  transform: rotate(180deg);
  cursor: help;
}

.norbert-photo:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 1);
}

/* Style pour la citation */
.norbert-quote {
  /* margin-top: 20px; */
  padding: 10px;
  font-size: 2rem;
  font-style: italic;
  color: #fff;
  position: relative;
  display: inline-block;
  /* text-align: left; */
  max-width: 100%;
}

/* Ajout d'un guillemet holographique avant la citation */
.norbert-quote::before {
  content: "“";
  font-size: 40px;
  color: #00ffff;
  position: absolute;
  top: -10px;
  left: -15px;
}

/* Ajout d'un guillemet holographique après la citation */
.norbert-quote::after {
  content: "”";
  font-size: 45px;
  color: #00ffff;
  position: absolute;
  bottom: -10px;
  right: -15px;
}

/* Effet lumineux sur le conteneur au survol */
.norbert-container {
  margin-top: 20px;
  display: grid;
  justify-items: center;
}

img {
  width: 300px;
}

@media (max-width: 600px) {
  .norbert-quote {
    font-size: 1rem;
  }
  .norbert-photo {
    width: 150px !important;
    height: auto !important;
  }
}
