/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Space+Mono&display=swap');

body {
  margin: 0;
  background-color: #f4f4f4;
  color: #111;
  font-family: 'Space Mono', monospace;
  line-height: 1.6;
  font-size: 1rem;
}

h1 {
  font-family: 'Anton', sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 2px solid #000;
}

.subtitle {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  color: #333;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
}

.wrapper {
  max-width: 800px;
  width: 100%;
  background: #fff;
  padding: 3rem;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border: 1px solid #000;
  position: relative;
  z-index: 10;
}

.manifesto p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://upload.wikimedia.org/wikipedia/commons/3/34/Grunge_texture.png');
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}