body {
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #232836;
  color: #f76f8e;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

header.logo {
  color: #eee;
  font-weight: bold;
  font-size: 1.2rem;
}

a {
  color: #96a3cb;
  text-decoration: none;
}
nav a {
  color: #96a3cb;
  text-decoration: none;
}
nav a:hover {
  color: #f76f8e;
  text-decoration: underline;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about {
  color: #96a3cb;
}

.email-link{
  color: #f76f8e;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.project-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #96a3cb;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-weight: bolder;
  max-width: 300px;
  padding: 24px;
  text-decoration: none;
  color: #222;
  transition:
    transform 0.2s,
    border-color 0.2s;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: #232836;
  background-color: #f76f8e;
}

.project-card:hover .project-title {
  color: #000000;
}

.project-arrow {
  color: #232836;
  font-size: 1.2rem;
  font-weight: bold;
}

.lists-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 600px) {
  .lists-container {
    grid-template-columns: 1fr;
  }
}

.blog-list,
.media-list {
  list-style: none;
  padding: 8px 0;
}

.blog-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 0;
  font-size: 1rem;
}

.blog-divider {
  flex: 1;
  border-bottom: 2px dotted #eee;
  margin-bottom: 0.25em;
  opacity: 0.6;
}

.blog-date {
  font-size: 0.85rem;
  white-space: nowrap;
  font-weight: normal;
  color: #fff;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

footer {
  text-align: center;
  padding: 40px 0;
  color: #96a3cb;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
  margin-top: 60px;
}
.asides-list {
  list-style: none;
  padding: 8px 0;
}

.asides-list li {
  margin-bottom: 8px;
}

.asides-list a:hover {
  color: #f76f8e;
  text-decoration: underline;
}