
/*
Variables to be used throughout site
*/
/*
Set your website theme here.
*/
[data-theme=light] {
  --primary-bg: #ffffff;
  --secondary-bg: #520761;
  --tertiary-bg: #520761;
  --primary-fg: #000000;
  --secondary-fg: #036077;
  --tertiary-fg: #036077;
  --link-color: #5f09af;
}

[data-theme=dark] {
  --primary-bg: #271227;
  --secondary-bg: #a849a8;
  --tertiary-bg: #a849a8;
  --primary-fg: #ffffff;
  --secondary-fg: #77c3c9;
  --tertiary-fg: #77c3c9;
  --link-color: #7fdde4;
}

.post-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}
.post-link:hover .post {
  background-color: var(--secondary-bg);
  opacity: 0.8;
  transform: translateY(-2px);
}

.post {
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.post .title {
  color: var(--secondary-fg);
}
.post .title h1 {
  margin-bottom: 5px;
  color: var(--secondary-fg);
}
.post .blurb {
  margin-left: 15px;
}
.post .blurb p {
  padding-top: 0;
  padding-bottom: 5px;
  margin-top: 5px;
  color: var(--primary-fg);
  font-size: 20px;
}