@import 'color-scheme.css'; 

#posts {
    opacity: 0; 
    animation: fadeIn 2s forwards; 
    margin-top: 30px;
}

.blog-heading {
  font-size: 24px; 
  text-decoration: none; 
  font-weight: normal;
  color: var(--headers); 
}

h3 {
  font-weight: 400; 
  font-size: 16px;
}

@keyframes fadeIn {
    0% {
        opacity: 0; 
    }
    100% {
      opacity: 1; 
    }
  }