index.html      → Página inicial
style.css       → Estilos do site
about.html      → Página sobre você (opcional)
posts/          → Pasta para seus posts (cada post pode ser um arquivo HTML)
images/         → Pasta para suas imagens fofas

body {
  background-color: #ffeef8;
  font-family: "Comic Sans MS", "Poppins", sans-serif;
  color: #5e4b56;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background-color: #ffd6e8;
  padding: 20px;
  border-bottom: 3px solid #ffb3d1;
}

h1 {
  font-size: 2.5em;
  color: #ff69b4;
  text-shadow: 1px 1px #fff;
}

nav a {
  color: #ff69b4;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 20px;
}

.posts ul {
  list-style: none;
  padding: 0;
}

.posts li {
  background-color: #fff0f7;
  border: 2px solid #ffcce0;
  border-radius: 10px;
  margin: 10px auto;
  width: 80%;
  padding: 10px;
  transition: transform 0.2s;
}

.posts li:hover {
  transform: scale(1.03);
}

footer {
  background-color: #ffd6e8;
  padding: 10px;
  font-size: 0.9em;
}

