/* Centraliza o conteúdo de main */
.introContainer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1rem;
}

.intro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  margin-bottom: 2rem;
  background-color: #fff;
  border-radius: 25px;
}

.intro-photo img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%; /* Torna a imagem circular */
}

.intro-text {
  flex: 1;
  text-align: left;
}

#hobbys {
  padding: 2rem;
  background-color: #fff;
  border-radius: 25px;
}
.anime-content {
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.title{
  font-size: 3rem;
  margin: 1rem;
}

.anime-content ul {
  list-style: none;
  padding: 1rem;
  border: 1px solid black;
  border-radius: 50px;
  transition: background-color 0.3s;
}
.anime-content li {
  padding: 1rem;
  border-radius: 50px;
  border-bottom: 1px solid black;
}

.anime-content li.hovered {
  background-color: #f0f0f0;
  border-radius: 50px;
  border-bottom: 1px solid black;
}
.anime-poster {
  width: 35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.anime-poster.hovered {
  background-color: #f0f0f0;
  border-radius: 50px;
}
.anime-poster img {
  max-width: 100%;
  margin: 1rem;
  height: auto;
}

.quote-section {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  font-family: 'Georgia', serif;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.quote-section .title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.quote-section .intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.quote-section blockquote {
  border-left: 4px solid #ccc;
  margin: 1.5rem auto;
  padding-left: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  max-width: 800px;
  position: relative;
}

.quote-section blockquote::before {
  content: "“";
  font-size: 4rem;
  color: #ccc;
  margin: 0.5rem;
  position: absolute;
  left: -0.8rem;
  top: -1rem;
}

.quote-section blockquote p {
  margin: 1rem;
}

.quote-section blockquote strong {
  font-weight: bold;
  color: #555;
  display: block;
  margin-top: 0.5rem;
}
