/* theme.css */  
@font-face {  
  font-family: 'wolves-ruin';  
  src: url('../assets/fonts/wolves-ruin.woff2') format('woff2'),  
       url('../assets/fonts/wolves-ruin.woff') format('woff'),  
       url('../assets/fonts/wolves-ruin.ttf') format('truetype');  
  font-weight: normal;  
  font-style: normal;  
}

body {  
  background-color: #1A202C; /* Dark Blue-Gray */  
  color: #E2E8F0; /* Light Gray */  
  font-family: 'wolves-ruin', sans-serif;  
  /* Consider moving background-image related styles to layout.css if it's more structural */  
  /* background-image: url('../assets/images/wood-moss-background.jpg');  */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
}  
