/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-color: #1a1a40;
  color: #f5f5f5; /* Light text for contrast */
  font-family: 'Georgia', serif; 
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-image: url('your-smoke-image.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  animation: drift 60s ease-in-out infinite;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 40px;
}

/* .landing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
  align-content: space-evenly;
  justify-content: space-between;
} */

h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-style: italic;
  margin-bottom: 40px;
}

.invocation p {
  text-align: center;
  margin-bottom: 20px;
  
}

footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9em;
  color: #ccc;
}

@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

