* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #ffffff;
  color: #000000;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 20px;
  border-bottom: 1px solid #000000;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: normal;
}

.site-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

h2 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: normal;
}

.projects {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.project-item {
  margin-bottom: 10px;
}

.site-footer {
  padding: 20px;
  border-top: 1px solid #000000;
  font-size: 14px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}
