body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #f5f5f5;
}

header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

main {
  width: 80%;
  margin: 30px auto;
}

h2 {
  margin-bottom: 20px;
}

.post {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.projects {
  margin-top: 50px;
}

.project-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.project {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.project iframe {
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #333;
  color: white;
  margin-top: 40px;
}