/* Clean Blog CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  font-weight: 300;
  color: #2c3e50;
}

header h1 a {
  text-decoration: none;
  color: inherit;
}

header p {
  color: #666;
  font-style: italic;
  margin-bottom: 15px;
}

nav a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
  font-size: 0.9em;
}

nav a:hover {
  color: #2c3e50;
}

main {
  margin-bottom: 40px;
}

#about {
  margin-bottom: 50px;
  font-size: 1.1em;
  color: #555;
  text-align: center;
}

#about p {
  margin-bottom: 15px;
}

h2 {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #2c3e50;
  font-weight: 300;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

article {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

article:last-child {
  border-bottom: none;
}

article h3, article h1 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #2c3e50;
  font-weight: 400;
}

article em {
  color: #888;
  font-size: 0.9em;
  display: block;
  margin-bottom: 15px;
}

article p {
  margin-bottom: 15px;
  text-align: justify;
}

article a {
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
}

article a:hover {
  text-decoration: underline;
}

.images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.images img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  
  header h1 {
    font-size: 2em;
  }
  
  nav a {
    display: block;
    margin: 5px 0;
  }
  
  .images {
    grid-template-columns: 1fr;
  }
}