:root {
  --background: #f7f3ef;
  --primary: #d8b89e;
  --secondary: #b38b6d;
  --text: #4e3f35;
  --accent: #e0c9b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.container {
  max-width: 800px;
  width: 100%;
  background: white;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header .banner {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

header h1 {
  color: var(--secondary);
  font-size: 2.5rem;
}

header .tagline {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--secondary);
  font-weight: bold;
}

nav a:hover {
  color: var(--primary);
}

.intro {
  text-align: center;
  margin-bottom: 30px;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px solid var(--accent);
}

#sobre-mi h2, #galeria h2, #museo h2 {
  color: var(--secondary);
  margin-bottom: 10px;
  margin-top: 20px;
}

#sobre-mi ul {
  list-style-type: square;
  margin-left: 20px;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--accent);
}

.character {
  margin-bottom: 20px;
  text-align: center;
}

.character img {
  width: 150px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--accent);
  margin-bottom: 10px;
}

.blog-post {
  background: var(--background);
  border-left: 4px solid var(--secondary);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.blog-post h2 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.date {
  font-size: 0.9rem;
  color: var(--primary);
  margin-bottom: 10px;
}

footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--primary);
  margin-top: 20px;
}
