/* Converted from css/styles.css */
/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
:root {
  --primary-color: #000000;
  --secondary-color: #28bf9c;
  --font-family: Verdana,Geneva,sans-serif;
  --font-family-title: Courier New,Courier,monospace;
}

body {
  font-family: var(--font-family);
  color: var(--primary-color);
}

/* Layout */
.container {
  width: 80%;
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
}

h1 {
  padding-top: 2rem;
  font-size: 2.5rem;
  font-family: var(--font-family-title);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1rem;
  }
}
/* Dark theme overrides */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #121212;
    color: #e0e0e0;
  }
  .container {
    width: 90%;
  }
}

/*# sourceMappingURL=styles.css.map */
